class Pose

August 13, 2019 ยท View on GitHub

Member values

Member nameData typeDescription
xfloat32X position (in meters)
yfloat32Y position (in meters)
zfloat32Z position (in meters)
theta_xfloat32Theta X orientation (in degrees)
theta_yfloat32Theta Y orienation (in degrees)
theta_zfloat32Theta Z orientation (in degrees)

Member functions

Function nameReturn typeInput typeDescription
x()float32voidReturns the current value of x. If the x is not set, returns 0.
set_x()voidfloat32Sets the value of x. After calling this, x() will return value.
clear_x()voidvoidClears the value of x. After calling this, x() will return 0.
y()float32voidReturns the current value of y. If the y is not set, returns 0.
set_y()voidfloat32Sets the value of y. After calling this, y() will return value.
clear_y()voidvoidClears the value of y. After calling this, y() will return 0.
z()float32voidReturns the current value of z. If the z is not set, returns 0.
set_z()voidfloat32Sets the value of z. After calling this, z() will return value.
clear_z()voidvoidClears the value of z. After calling this, z() will return 0.
theta_x()float32voidReturns the current value of theta_x. If the theta_x is not set, returns 0.
set_theta_x()voidfloat32Sets the value of theta_x. After calling this, theta_x() will return value.
clear_theta_x()voidvoidClears the value of theta_x. After calling this, theta_x() will return 0.
theta_y()float32voidReturns the current value of theta_y. If the theta_y is not set, returns 0.
set_theta_y()voidfloat32Sets the value of theta_y. After calling this, theta_y() will return value.
clear_theta_y()voidvoidClears the value of theta_y. After calling this, theta_y() will return 0.
theta_z()float32voidReturns the current value of theta_z. If the theta_z is not set, returns 0.
set_theta_z()voidfloat32Sets the value of theta_z. After calling this, theta_z() will return value.
clear_theta_z()voidvoidClears the value of theta_z. After calling this, theta_z() will return 0.

Parent topic: Base (C++)