pub type Region3d<T> = Region<T, 3>;
Expand description
A 3-dimensional Region
.
Aliased Type§
struct Region3d<T> {
pub pos: Position<T, 3>,
pub size: Extent<T, 3>,
}
Fields§
§pos: Position<T, 3>
§size: Extent<T, 3>
Implementations
Trait Implementations
Source§impl<T: Ord, const D: usize> Ord for Region<T, D>
impl<T: Ord, const D: usize> Ord for Region<T, D>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more