class JointSpeeds
February 26, 2020 ยท View on GitHub
Member values
| Member name | Data type | Description |
|---|---|---|
| joint_speed | float32 | Desired joint speeds (degrees / second) |
Member functions
| Function name | Return type | Input type | Description |
|---|---|---|---|
| joint_speed_size() const | int | void | Returns the number of elements currently in the field. |
| joint_speed() const | int | int index | Returns the element at the given zero-based index. Calling this method with index outside of [0, joint_speed_size()) yields undefined behavior. |
| set_joint_speed() | void | (int index, int32 value) | Sets the value of the element at the given zero-based index. |
| add_joint_speed() | void | (int32 value) | Appends a new element to the field with the given value. |
| clear_joint_speed() | void | void | Removes all elements from the field. After calling this, joint_speed_size() will return zero. |
| joint_speed() const | const RepeatedField<int32>& | void | Returns the underlying RepeatedField that stores the field's elements. This container class provides STL-like iterators and other methods. |
| mutable_joint_speed() | RepeatedField<int32>* | void | Returns 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++)