pub type Region2d<T> = Region<T, 2>;
Expand description
A 2-dimensional Region
.
Aliased Type§
struct Region2d<T> {
pub pos: Position<T, 2>,
pub size: Extent<T, 2>,
}
Fields§
§pos: Position<T, 2>
§size: Extent<T, 2>
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