class KinematicLimits

February 26, 2020 ยท View on GitHub

Member values

Member nameData typeDescription
control_modeuint32Control mode
twist_linearfloat32Linear twist limits
twist_angularfloat32Angular twist limits
joint_speed_limitsfloat32Joint speed limits
joint_acceleration_limitsfloat32Joint Acceleration limits

Member functions

Function nameReturn typeInput typeDescription
control_mode() constuint32voidReturns the current value of control_mode. If the control_mode is not set, returns 0.
set_control_mode()voiduint32Sets the value of control_mode. After calling this, control_mode() will return value.
clear_control_mode()voidvoidClears the value of control_mode. After calling this, control_mode() will return the empty string/empty bytes.
twist_linear()float32voidReturns the current value of twist_linear. If the twist_linear is not set, returns 0.
set_twist_linear()voidfloat32Sets the value of twist_linear. After calling this, twist_linear() will return value.
clear_twist_linear()voidvoidClears the value of twist_linear. After calling this, twist_linear() will return 0.
twist_angular()float32voidReturns the current value of twist_angular. If the twist_angular is not set, returns 0.
set_twist_angular()voidfloat32Sets the value of twist_angular. After calling this, twist_angular() will return value.
clear_twist_angular()voidvoidClears the value of twist_angular. After calling this, twist_angular() will return 0.
joint_speed_limits_size() constintvoidReturns the number of elements currently in the field.
joint_speed_limits() constintint indexReturns the element at the given zero-based index. Calling this method with index outside of [0, joint_speed_limits_size()) yields undefined behavior.
set_joint_speed_limits()void(int index, int32 value)Sets the value of the element at the given zero-based index.
add_joint_speed_limits()void(int32 value)Appends a new element to the field with the given value.
clear_joint_speed_limits()voidvoidRemoves all elements from the field. After calling this, joint_speed_limits_size() will return zero.
joint_speed_limits() constconst RepeatedField<int32>&voidReturns the underlying RepeatedField that stores the field's elements. This container class provides STL-like iterators and other methods.
mutable_joint_speed_limits()RepeatedField<int32>*voidReturns a pointer to the underlying mutable RepeatedField that stores the field's elements. This container class provides STL-like iterators and other methods.
joint_acceleration_limits_size() constintvoidReturns the number of elements currently in the field.
joint_acceleration_limits() constintint indexReturns the element at the given zero-based index. Calling this method with index outside of [0, joint_acceleration_limits_size()) yields undefined behavior.
set_joint_acceleration_limits()void(int index, int32 value)Sets the value of the element at the given zero-based index.
add_joint_acceleration_limits()void(int32 value)Appends a new element to the field with the given value.
clear_joint_acceleration_limits()voidvoidRemoves all elements from the field. After calling this, joint_acceleration_limits_size() will return zero.
joint_acceleration_limits() constconst RepeatedField<int32>&voidReturns the underlying RepeatedField that stores the field's elements. This container class provides STL-like iterators and other methods.
mutable_joint_acceleration_limits()RepeatedField<int32>*voidReturns a pointer to the underlying mutable RepeatedField that stores the field's elements. This container class provides STL-like iterators and other methods.

Parent topic: ControlConfig (C++)