pub struct Vec2<T>(pub T, pub T);
Expand description
Simple two-dimensional vector of any numerical type. Supports only few mathematical operations as this is used mainly as data struct.
Tuple Fields
0: T
1: T
Implementations
sourceimpl<T> Vec2<T>
impl<T> Vec2<T>
sourcepub fn max(self, other: Self) -> Self where
T: Ord,
pub fn max(self, other: Self) -> Self where
T: Ord,
Returns the vector with the maximum of either coordinates.
sourcepub fn min(self, other: Self) -> Self where
T: Ord,
pub fn min(self, other: Self) -> Self where
T: Ord,
Returns the vector with the minimum of either coordinates.
sourcepub fn try_from<S>(value: Vec2<S>) -> Result<Self, T::Error> where
T: TryFrom<S>,
pub fn try_from<S>(value: Vec2<S>) -> Result<Self, T::Error> where
T: TryFrom<S>,
Try to convert all components of this vector to a new type, yielding either a vector of that new type, or an error.
sourcepub fn area(self) -> T where
T: Mul<T, Output = T>,
pub fn area(self) -> T where
T: Mul<T, Output = T>,
Seeing this vector as a dimension or size (width and height),
this returns the area that this dimensions contains (width * height
).
sourcepub fn flat_index_for_size(self, resolution: Vec2<T>) -> T where
T: Copy + Debug + Ord + Mul<Output = T> + Add<Output = T>,
pub fn flat_index_for_size(self, resolution: Vec2<T>) -> T where
T: Copy + Debug + Ord + Mul<Output = T> + Add<Output = T>,
Convert this two-dimensional coordinate to an index suited for one-dimensional flattened image arrays. Works for images that store the pixels row by row, one after another, in a single array. In debug mode, panics for an index out of bounds.
Trait Implementations
impl<T: Copy> Copy for Vec2<T>
impl<T: Eq> Eq for Vec2<T>
impl<T> StructuralEq for Vec2<T>
impl<T> StructuralPartialEq for Vec2<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for Vec2<T> where
T: RefUnwindSafe,
impl<T> Send for Vec2<T> where
T: Send,
impl<T> Sync for Vec2<T> where
T: Sync,
impl<T> Unpin for Vec2<T> where
T: Unpin,
impl<T> UnwindSafe for Vec2<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
sourcefn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian()
.
sourcefn read_from_big_endian(read: &mut R) -> Result<Self, Error>
fn read_from_big_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian()
.
sourcefn read_from_native_endian(read: &mut R) -> Result<Self, Error>
fn read_from_native_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian()
.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more