Extent3f

Type Alias Extent3f 

Source
pub type Extent3f = ExtentN<[f32; 3]>;
Expand description

A 3-dimensional extent with scalar type f32.

Aliased Type§

pub struct Extent3f {
    pub minimum: PointN<[f32; 3]>,
    pub shape: PointN<[f32; 3]>,
}

Fields§

§minimum: PointN<[f32; 3]>

The least point contained in the extent.

§shape: PointN<[f32; 3]>

The length of each dimension.