From e201235ec0e17f65f10e34aa94650af8c6c2ddd7 Mon Sep 17 00:00:00 2001 From: Brady Moon Date: Thu, 4 Apr 2024 14:10:39 -0400 Subject: [PATCH] Remove unused variables --- src/trochoids.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/trochoids.cpp b/src/trochoids.cpp index 9863fc5..29644b6 100755 --- a/src/trochoids.cpp +++ b/src/trochoids.cpp @@ -483,8 +483,6 @@ Path trochoids::Trochoid::getTrochoid(double waypoint_distance) continue; } - double xt1dot = v*cos(del1*w*t1_ + phi1) + vw; - double yt1dot = v*sin(del1*w*t1_ + phi1); double xt2dot = v*cos(del2*w*t2 + phi2) + vw; double yt2dot = v*sin(del2*w*t2 + phi2);