Struct me3_framework::overlay::Pos2
source · [−]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
sourceimpl Pos2
impl Pos2
sourcepub const ZERO: Pos2 = Self{ x: 0.0, y: 0.0,}
pub const ZERO: Pos2 = Self{ x: 0.0, y: 0.0,}
The zero position, the origin.
The top left corner in a GUI.
Same as Pos2::default()
.
pub const fn new(x: f32, y: f32) -> Pos2
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: Pos2) -> f32
pub fn distance_sq(self, other: Pos2) -> f32
pub fn floor(self) -> Pos2
pub fn round(self) -> Pos2
pub fn ceil(self) -> Pos2
pub fn min(self, other: Pos2) -> Pos2
pub fn max(self, other: Pos2) -> Pos2
pub fn clamp(self, min: Pos2, max: Pos2) -> Pos2
Trait Implementations
sourceimpl AddAssign<Vec2> for Pos2
impl AddAssign<Vec2> for Pos2
sourcefn add_assign(&mut self, rhs: Vec2)
fn add_assign(&mut self, rhs: Vec2)
Performs the
+=
operation. Read moresourceimpl Mul<Pos2> for &RectTransform
impl Mul<Pos2> for &RectTransform
Transforms the position.
sourceimpl Mul<Pos2> for RectTransform
impl Mul<Pos2> for RectTransform
Transforms the position.
sourceimpl SubAssign<Vec2> for Pos2
impl SubAssign<Vec2> for Pos2
sourcefn 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 StructuralPartialEq for Pos2
Auto Trait Implementations
impl RefUnwindSafe for Pos2
impl Send for Pos2
impl Sync for Pos2
impl Unpin for Pos2
impl UnwindSafe for Pos2
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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