Module vek::vec::repr_c

source · []
Expand description

Vector types which are marked #[repr(C)].

See also the repr_simd neighbour module, which is available on Nightly with the repr_simd feature enabled.

Re-exports

pub use self::vec2::Vec2;
pub use self::vec3::Vec3;
pub use self::vec4::Vec4;
pub use self::extent3::Extent3;
pub use self::extent2::Extent2;
pub use self::rgba::Rgba;
pub use self::rgb::Rgb;

Modules

Vector type suited for 2D extents (width and height).

Vector type suited for 3D extents (width, height and depth).

Vector type suited for RGB color data.

Vector type suited for RGBA color data.

Vector type suited for 2D spatial coordinates.

Vector type suited for 3D spatial coordinates.

Vector type suited for homogeneous 3D spatial coordinates.