DRot3

Type Alias DRot3 

Source
pub type DRot3 = DQuat;
Expand description

A 3D rotation represented as a unit quaternion (f64 precision).

This is a direct re-export of glam::DQuat.

Aliased Type§

#[repr(C)]
pub struct DRot3 { pub x: f64, pub y: f64, pub z: f64, pub w: f64, }

Fields§

§x: f64§y: f64§z: f64§w: f64

Trait Implementations§

Source§

impl Mul<DPose3> for DRot3

Source§

type Output = DPose3

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: DPose3) -> Self::Output

Performs the * operation. Read more