Struct emath::Pos2[][src]

pub struct Pos2 {
    pub x: f32,
    pub y: f32,
}

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: f32y: f32

Implementations

impl Pos2[src]

pub const ZERO: Self[src]

The zero position, the origin. The top left corner in a GUI. Same as Pos2::default().

pub const fn zero() -> Self[src]

👎 Deprecated:

Use Pos2::ZERO instead

pub const fn new(x: f32, y: f32) -> Self[src]

pub fn to_vec2(self) -> Vec2[src]

The vector from origin to this position. p.to_vec2() is equivalent to p - Pos2::default().

pub fn distance(self, other: Self) -> f32[src]

pub fn distance_sq(self, other: Self) -> f32[src]

pub fn floor(self) -> Self[src]

pub fn round(self) -> Self[src]

pub fn ceil(self) -> Self[src]

pub fn is_finite(self) -> bool[src]

True if all members are also finite.

pub fn any_nan(self) -> bool[src]

True if any member is NaN.

#[must_use]
pub fn min(self, other: Self) -> Self
[src]

#[must_use]
pub fn max(self, other: Self) -> Self
[src]

#[must_use]
pub fn clamp(self, min: Self, max: Self) -> Self
[src]

Trait Implementations

impl Add<Vec2> for Pos2[src]

type Output = Pos2

The resulting type after applying the + operator.

fn add(self, rhs: Vec2) -> Pos2[src]

Performs the + operation. Read more

impl AddAssign<Vec2> for Pos2[src]

fn add_assign(&mut self, rhs: Vec2)[src]

Performs the += operation. Read more

impl Clone for Pos2[src]

fn clone(&self) -> Pos2[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Pos2[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for Pos2[src]

fn default() -> Pos2[src]

Returns the “default value” for a type. Read more

impl From<&'_ [f32; 2]> for Pos2[src]

fn from(v: &[f32; 2]) -> Self[src]

Performs the conversion.

impl From<&'_ (f32, f32)> for Pos2[src]

fn from(v: &(f32, f32)) -> Self[src]

Performs the conversion.

impl From<[f32; 2]> for Pos2[src]

fn from(v: [f32; 2]) -> Self[src]

Performs the conversion.

impl From<(f32, f32)> for Pos2[src]

fn from(v: (f32, f32)) -> Self[src]

Performs the conversion.

impl Index<usize> for Pos2[src]

type Output = f32

The returned type after indexing.

fn index(&self, index: usize) -> &f32[src]

Performs the indexing (container[index]) operation. Read more

impl IndexMut<usize> for Pos2[src]

fn index_mut(&mut self, index: usize) -> &mut f32[src]

Performs the mutable indexing (container[index]) operation. Read more

impl Mul<Pos2> for RectTransform[src]

Transforms the position.

type Output = Pos2

The resulting type after applying the * operator.

fn mul(self, pos: Pos2) -> Pos2[src]

Performs the * operation. Read more

impl Mul<Pos2> for &RectTransform[src]

Transforms the position.

type Output = Pos2

The resulting type after applying the * operator.

fn mul(self, pos: Pos2) -> Pos2[src]

Performs the * operation. Read more

impl NumExt for Pos2[src]

fn at_least(self, lower_limit: Self) -> Self[src]

More readable version of self.max(lower_limit)

fn at_most(self, upper_limit: Self) -> Self[src]

More readable version of self.min(upper_limit)

impl PartialEq<Pos2> for Pos2[src]

fn eq(&self, other: &Pos2) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Pos2) -> bool[src]

This method tests for !=.

impl Sub<Pos2> for Pos2[src]

type Output = Vec2

The resulting type after applying the - operator.

fn sub(self, rhs: Pos2) -> Vec2[src]

Performs the - operation. Read more

impl Sub<Vec2> for Pos2[src]

type Output = Pos2

The resulting type after applying the - operator.

fn sub(self, rhs: Vec2) -> Pos2[src]

Performs the - operation. Read more

impl SubAssign<Vec2> for Pos2[src]

fn sub_assign(&mut self, rhs: Vec2)[src]

Performs the -= operation. Read more

impl Copy for Pos2[src]

impl Eq for Pos2[src]

impl StructuralPartialEq for Pos2[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.