#[repr(C)]pub struct Pos2 {
pub x: f32,
pub y: f32,
}
Expand description
A position on screen.
Normally given in points (logical pixels).
Mathematically this is known as a “point”, but the term position was chosen so not to conflict with the unit (one point = X physical pixels).
Fields§
§x: f32
How far to the right.
y: f32
How far down.
Implementations§
source§impl Pos2
impl Pos2
sourcepub const ZERO: Self = _
pub const ZERO: Self = _
The zero position, the origin.
The top left corner in a GUI.
Same as Pos2::default()
.
pub const fn new(x: f32, y: f32) -> Self
sourcepub fn to_vec2(self) -> Vec2
pub fn to_vec2(self) -> Vec2
The vector from origin to this position.
p.to_vec2()
is equivalent to p - Pos2::default()
.
pub fn distance(self, other: Self) -> f32
pub fn distance_sq(self, other: Self) -> f32
pub fn floor(self) -> Self
pub fn round(self) -> Self
pub fn ceil(self) -> Self
pub fn min(self, other: Self) -> Self
pub fn max(self, other: Self) -> Self
pub fn clamp(self, min: Self, max: Self) -> Self
Trait Implementations§
source§impl AddAssign<Vec2> for Pos2
impl AddAssign<Vec2> for Pos2
source§fn add_assign(&mut self, rhs: Vec2)
fn add_assign(&mut self, rhs: Vec2)
Performs the
+=
operation. Read moresource§impl<'de> Deserialize<'de> for Pos2
impl<'de> Deserialize<'de> for Pos2
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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Mul<Pos2> for &RectTransform
impl Mul<Pos2> for &RectTransform
Transforms the position.
source§impl Mul<Pos2> for RectTransform
impl Mul<Pos2> for RectTransform
Transforms the position.
source§impl Mul<Pos2> for TSTransform
impl Mul<Pos2> for TSTransform
Transforms the position.
source§impl SubAssign<Vec2> for Pos2
impl SubAssign<Vec2> for Pos2
source§fn sub_assign(&mut self, rhs: Vec2)
fn sub_assign(&mut self, rhs: Vec2)
Performs the
-=
operation. Read moreimpl Copy for Pos2
impl Eq for Pos2
impl Pod for Pos2
impl StructuralPartialEq for Pos2
Auto Trait Implementations§
impl Freeze for Pos2
impl RefUnwindSafe for Pos2
impl Send for Pos2
impl Sync for Pos2
impl Unpin for Pos2
impl UnwindSafe for Pos2
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
Mutably borrows from an owned value. Read more
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
If this function returns true, then it must be valid to reinterpret
bits
as &Self
.source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)