Struct gvr_sys::gvr_quatf [] [src]

#[repr(C)]
pub struct gvr_quatf { pub qx: f32, pub qy: f32, pub qz: f32, pub qw: f32, }

A floating point quaternion, in JPL format. We use this simple struct in order not to impose a dependency on a particular math library. The user of this API is free to encapsulate this into any math library they want.

Fields

qx, qy, qz are the vector components.

qw is the scalar component.

Trait Implementations

impl Debug for gvr_quatf
[src]

[src]

Formats the value using the given formatter.

impl Copy for gvr_quatf
[src]

impl Clone for gvr_quatf
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more