Add translation method for MecannumDrive
This commit is contained in:
parent
06182dc1e9
commit
3a062d75aa
|
@ -308,4 +308,10 @@ public class MecanumDrive extends com.acmerobotics.roadrunner.drive.MecanumDrive
|
||||||
public static TrajectoryAccelerationConstraint getAccelerationConstraint(double maxAccel) {
|
public static TrajectoryAccelerationConstraint getAccelerationConstraint(double maxAccel) {
|
||||||
return new ProfileAccelerationConstraint(maxAccel);
|
return new ProfileAccelerationConstraint(maxAccel);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setInput(double x, double y, double z) {
|
||||||
|
Pose2d vel = new Pose2d(x, y, z);
|
||||||
|
setDrivePower(vel);
|
||||||
|
update();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue