diff --git a/src/control/PlanarArmController.h b/src/control/PlanarArmController.h index 966d6a500..012204c3b 100644 --- a/src/control/PlanarArmController.h +++ b/src/control/PlanarArmController.h @@ -72,8 +72,7 @@ template class PlanarArmController { double radius = kin.getSegLens().sum() * safetyFactor; if (pos.norm() > radius) { // new position is outside of bounds - // TODO: will need to eventually shrink velocity vector until it is within radius - // instead of just normalizing it + // shrink velocity vector until it is within radius. pos.normalize(); pos *= radius; }