Extent3

Type Alias Extent3 

Source
pub type Extent3<T> = ExtentN<[T; 3]>;
Expand description

A 3-dimensional extent with scalar type T.

Aliased Type§

pub struct Extent3<T> {
    pub minimum: PointN<[T; 3]>,
    pub shape: PointN<[T; 3]>,
}

Fields§

§minimum: PointN<[T; 3]>

The least point contained in the extent.

§shape: PointN<[T; 3]>

The length of each dimension.