class CartesianSpeed

July 10, 2023 ยท View on GitHub

Member values

Member nameData typeDescription
translationfloat32Translation speed (in meters per second)
orientationfloat32Orientation speed (in degrees per second) (not implemented yet)

Member functions

Function nameReturn typeInput typeDescription
translation()float32voidReturns the current value of translation. If the translation is not set, returns 0.
set_translation()voidfloat32Sets the value of translation. After calling this, translation() will return value.
clear_translation()voidvoidClears the value of translation. After calling this, translation() will return 0.
orientation()float32voidReturns the current value of orientation. If the orientation is not set, returns 0.
set_orientation()voidfloat32Sets the value of orientation. After calling this, orientation() will return value.
clear_orientation()voidvoidClears the value of orientation. After calling this, orientation() will return 0.

Parent topic: Base (C++)