pub type Pose = Pose2;Expand description
The transformation matrix type (pose = rotation + translation).
Aliased Type§
pub struct Pose {
pub rotation: Rot2,
pub translation: Vec2,
}Fields§
§rotation: Rot2The rotational part of the pose.
translation: Vec2The translational part of the pose.