pub type Pose = Pose3;Expand description
The transformation matrix type (pose = rotation + translation).
Aliased Type§
pub struct Pose {
pub rotation: Quat,
pub translation: Vec3,
}Fields§
§rotation: QuatThe rotational part of the pose.
translation: Vec3The translational part of the pose.