Type Alias Point3D

Source
pub type Point3D<T> = TypedPoint3D<T, UnknownUnit>;
Expand description

Default 3d point type with no unit.

Point3D provides the same methods as TypedPoint3D.

Aliased Type§

#[repr(C)]
pub struct Point3D<T> { pub x: T, pub y: T, pub z: T, /* private fields */ }

Fields§

§x: T§y: T§z: T