strafeLeft

open fun strafeLeft(inches: Double): T

Strafe left a given distance.

Return

The builder

Parameters

inches

The distance to strafe (inches)


open fun strafeLeft(distance: Double, inUnit: Distance): T

Strafe left a given distance.

Return

The builder

Parameters

distance

The distance to strafe

inUnit

The unit of the distance (will be converted to inches)


open fun strafeLeft(inches: Double, velConstraint: TrajectoryVelocityConstraint, accelConstraint: TrajectoryAccelerationConstraint): T

Strafe left a given distance with custom velocity and acceleration constraints.

Return

The builder

Parameters

inches

The distance to strafe (inches)

velConstraint

The velocity constraint (inches/sec)

accelConstraint

The acceleration constraint (inches/sec^2)


open fun strafeLeft(distance: Double, inUnit: Distance, velConstraint: TrajectoryVelocityConstraint, accelConstraint: TrajectoryAccelerationConstraint): T

Strafe left a given distance with custom velocity and acceleration constraints.

Return

The builder

Parameters

distance

The distance to strafe

inUnit

The unit of the distance (will be converted to inches)

velConstraint

The velocity constraint (inches/sec)

accelConstraint

The acceleration constraint (inches/sec^2)