#[repr(C)]pub struct IVec2 {
pub x: i32,
pub y: i32,
}Expand description
A set of two coordinates which may be interpreted as a vector or point in 2d space.
Generally this distinction between a point and vector is more of a pain than it is worth to distinguish on a type level, however when converting to and from homogeneous coordinates it is quite important.
Fields§
§x: i32§y: i32Implementations§
Source§impl IVec2
impl IVec2
pub const fn new(x: i32, y: i32) -> Self
pub fn broadcast(val: i32) -> Self
pub fn unit_x() -> Self
pub fn unit_y() -> Self
Sourcepub fn into_homogeneous_point(self) -> IVec3
pub fn into_homogeneous_point(self) -> IVec3
Create a homogeneous 2d point from this vector interpreted as a point, meaning the homogeneous component will start with a value of 1.
Sourcepub fn into_homogeneous_vector(self) -> IVec3
pub fn into_homogeneous_vector(self) -> IVec3
Create a homogeneous 2d vector from this vector, meaning the homogeneous component will always have a value of 0.
Sourcepub fn from_homogeneous_point(v: IVec3) -> Self
pub fn from_homogeneous_point(v: IVec3) -> Self
Create a 2d point from a homogeneous 2d point, performing division by the homogeneous component. This should not be used for homogeneous 2d vectors, which will have 0 as their homogeneous component.
Sourcepub fn from_homogeneous_vector(v: IVec3) -> Self
pub fn from_homogeneous_vector(v: IVec3) -> Self
Create a 2d vector from homogeneous 2d vector, which simply discards the homogeneous component.
pub fn dot(&self, other: IVec2) -> i32
pub fn reflected(&self, normal: IVec2) -> Self
pub fn mag(&self) -> i32
pub fn mag_sq(&self) -> i32
pub fn mul_add(&self, mul: IVec2, add: IVec2) -> Self
pub fn clamp(&mut self, min: Self, max: Self)
pub fn clamped(self, min: Self, max: Self) -> Self
pub fn map<F>(&self, f: F) -> Self
pub fn apply<F>(&mut self, f: F)
pub fn max_by_component(self, other: Self) -> Self
pub fn min_by_component(self, other: Self) -> Self
pub fn component_max(&self) -> i32
pub fn component_min(&self) -> i32
pub fn zero() -> Self
pub fn one() -> Self
pub fn xyz(&self) -> IVec3
pub fn xyzw(&self) -> IVec4
pub fn layout() -> Layout
pub fn as_slice(&self) -> &[i32]
pub fn as_array(&self) -> [i32; 2]
pub fn as_byte_slice(&self) -> &[u8] ⓘ
pub fn as_mut_slice(&mut self) -> &mut [i32]
pub fn as_mut_byte_slice(&mut self) -> &mut [u8] ⓘ
Sourcepub fn as_ptr(&self) -> *const i32
pub fn as_ptr(&self) -> *const i32
Returns a constant unsafe pointer to the underlying data in the underlying type. This function is safe because all types here are repr(C) and can be represented as their underlying type.
§Safety
It is up to the caller to correctly use this pointer and its bounds.
Sourcepub fn as_mut_ptr(&mut self) -> *mut i32
pub fn as_mut_ptr(&mut self) -> *mut i32
Returns a mutable unsafe pointer to the underlying data in the underlying type. This function is safe because all types here are repr(C) and can be represented as their underlying type.
§Safety
It is up to the caller to correctly use this pointer and its bounds.
Trait Implementations§
Source§impl AddAssign for IVec2
impl AddAssign for IVec2
Source§fn add_assign(&mut self, rhs: IVec2)
fn add_assign(&mut self, rhs: IVec2)
+= operation. Read moreSource§impl<'de> Deserialize<'de> for IVec2
impl<'de> Deserialize<'de> for IVec2
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Source§impl DivAssign<i32> for IVec2
impl DivAssign<i32> for IVec2
Source§fn div_assign(&mut self, rhs: i32)
fn div_assign(&mut self, rhs: i32)
/= operation. Read moreSource§impl DivAssign for IVec2
impl DivAssign for IVec2
Source§fn div_assign(&mut self, rhs: IVec2)
fn div_assign(&mut self, rhs: IVec2)
/= operation. Read moreSource§impl MulAssign<i32> for IVec2
impl MulAssign<i32> for IVec2
Source§fn mul_assign(&mut self, rhs: i32)
fn mul_assign(&mut self, rhs: i32)
*= operation. Read moreSource§impl MulAssign for IVec2
impl MulAssign for IVec2
Source§fn mul_assign(&mut self, rhs: IVec2)
fn mul_assign(&mut self, rhs: IVec2)
*= operation. Read moreSource§impl SubAssign for IVec2
impl SubAssign for IVec2
Source§fn sub_assign(&mut self, rhs: IVec2)
fn sub_assign(&mut self, rhs: IVec2)
-= operation. Read moreSource§impl TryFrom<DVec2> for IVec2
impl TryFrom<DVec2> for IVec2
Source§fn try_from(v: DVec2) -> Result<Self, Self::Error>
fn try_from(v: DVec2) -> Result<Self, Self::Error>
Tries to convert the source to Self in a lossy way, flooring any float value.
§Errors
NaN- If a float value isNaN.NotFinite- If a float value is infinity or negative infinity.PosOverflow- If a float value would be greater than the the self.component max value.NegOverflow- If a float value would be less than the self.component min value.
Source§type Error = FloatConversionError
type Error = FloatConversionError
Source§impl TryFrom<Vec2> for IVec2
impl TryFrom<Vec2> for IVec2
Source§fn try_from(v: Vec2) -> Result<Self, Self::Error>
fn try_from(v: Vec2) -> Result<Self, Self::Error>
Tries to convert the source to Self in a lossy way, flooring any float value.
§Errors
NaN- If a float value isNaN.NotFinite- If a float value is infinity or negative infinity.PosOverflow- If a float value would be greater than the the self.component max value.NegOverflow- If a float value would be less than the self.component min value.
Source§type Error = FloatConversionError
type Error = FloatConversionError
impl Copy for IVec2
impl Eq for IVec2
impl Pod for IVec2
impl StructuralPartialEq for IVec2
Auto Trait Implementations§
impl Freeze for IVec2
impl RefUnwindSafe for IVec2
impl Send for IVec2
impl Sync for IVec2
impl Unpin for IVec2
impl UnwindSafe for IVec2
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
bits
as &Self.