Type Alias Point3

Source
pub type Point3 = Vec3;
Expand description

Type alias for a 3D point.

Aliased Type§

struct Point3 {
    pub e: [f64; 3],
}

Fields§

§e: [f64; 3]

Components stored as [x, y, z].