pub type Extent2f = ExtentN<[f32; 2]>;Expand description
A 2-dimensional extent with scalar type f32.
Aliased Type§
pub struct Extent2f {
pub minimum: PointN<[f32; 2]>,
pub shape: PointN<[f32; 2]>,
}Fields§
§minimum: PointN<[f32; 2]>The least point contained in the extent.
shape: PointN<[f32; 2]>The length of each dimension.