MotionConstraints

data class MotionConstraints(    val maxV: Double,     val accel: Double,     rawDeccel: Double = accel)

Motion Constraints specify limits of motion of a system

See also

Parameters

maxV

max velocity

accel

max acceleration

deccel

max deceleration

Constructors

Link copied to clipboard
fun MotionConstraints(    maxV: Double,     accel: Double,     rawDeccel: Double = accel)

Properties

Link copied to clipboard
val accel: Double
Link copied to clipboard
val deccel: Double
Link copied to clipboard
val maxV: Double