diff --git a/src/path/SwervePathBuilder.cpp b/src/path/SwervePathBuilder.cpp index 54d1e68d..9ddeba1b 100644 --- a/src/path/SwervePathBuilder.cpp +++ b/src/path/SwervePathBuilder.cpp @@ -6,7 +6,7 @@ #include #include #include -#include +#include #include "optimization/TrajoptUtil.h" #include "trajopt/constraint/AngularVelocityConstraint.h" @@ -75,7 +75,7 @@ void SwervePathBuilder::WptVelocityDirection(size_t idx, double angle) { } void SwervePathBuilder::WptVelocityMagnitude(size_t idx, double v) { - printf("Velocity from Cpp: %f", v); + std::cout << v << std::endl; if (std::abs(v) < 0.0001) { WptZeroVelocity(idx); } else {