Documentation Index
Fetch the complete documentation index at: https://docs.generalrobotics.dev/llms.txt
Use this file to discover all available pages before exploring further.
Velocity
Inherits from: object
A class to represent 3D velocity.
Represents velocity in 3D space with x, y, and z components.
Supports mathematical operations and conversions to/from various formats.
Attributes:
x (float): x-component of velocity (m/s or rad/s)
y (float): y-component of velocity (m/s or rad/s)
z (float): z-component of velocity (m/s or rad/s)
x_vel
Velocity.x_vel() -> float
No docstring provided.
x_vel
Velocity.x_vel(value: float) -> None
No docstring provided.
y_vel
Velocity.y_vel() -> float
No docstring provided.
y_vel
Velocity.y_vel(value: float) -> None
No docstring provided.
z_vel
Velocity.z_vel() -> float
No docstring provided.
z_vel
Velocity.z_vel(value: float) -> None
No docstring provided.
to_dict
Velocity.to_dict() -> dict
Serialize to dictionary for JSON transfer.
Dictionary representation of the velocity
from_dict
Velocity.from_dict(data: dict) -> 'Velocity'
Deserialize from dictionary.
Dictionary containing velocity data
Reconstructed velocity object