Skip to main content

Pos2

Struct Pos2 

Source
pub struct Pos2 {
    pub x: f32,
    pub y: f32,
}
Expand description

A point in space: world coordinates on the canvas, points on screen.

Fields§

§x: f32

How far to the right.

§y: f32

How far down.

Implementations§

Source§

impl Pos2

Source

pub const ZERO: Self

The origin — the left-top corner in screen coordinates.

Source

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

Source

pub const fn to_vec2(self) -> Vec2

The vector from the origin to this position.

Source

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

Source

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

Source

pub fn floor(self) -> Self

Source

pub fn round(self) -> Self

Source

pub fn ceil(self) -> Self

Source

pub fn is_finite(self) -> bool

Source

pub fn min(self, other: Self) -> Self

Per-axis minimum.

Source

pub fn max(self, other: Self) -> Self

Per-axis maximum.

Source

pub fn clamp(self, min: Self, max: Self) -> Self

Source

pub fn lerp(self, other: Self, t: f32) -> Self

0.0 => self, 1.0 => other.

Trait Implementations§

Source§

impl Add<Vec2> for Pos2

Source§

type Output = Pos2

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Vec2) -> Self

Performs the + operation. Read more
Source§

impl AddAssign<Vec2> for Pos2

Source§

fn add_assign(&mut self, rhs: Vec2)

Performs the += operation. Read more
Source§

impl Clone for Pos2

Source§

fn clone(&self) -> Pos2

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Pos2

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for Pos2

Source§

fn default() -> Pos2

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

impl<'de> Deserialize<'de> for Pos2

Source§

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 Display for Pos2

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Div<f32> for Pos2

Source§

type Output = Pos2

The resulting type after applying the / operator.
Source§

fn div(self, factor: f32) -> Self

Performs the / operation. Read more
Source§

impl From<[f32; 2]> for Pos2

Source§

fn from([x, y]: [f32; 2]) -> Self

Converts to this type from the input type.
Source§

impl From<(f32, f32)> for Pos2

Source§

fn from((x, y): (f32, f32)) -> Self

Converts to this type from the input type.
Source§

impl From<Pos2> for [f32; 2]

Source§

fn from(p: Pos2) -> Self

Converts to this type from the input type.
Source§

impl From<Pos2> for (f32, f32)

Source§

fn from(p: Pos2) -> Self

Converts to this type from the input type.
Source§

impl Mul<Pos2> for f32

Source§

type Output = Pos2

The resulting type after applying the * operator.
Source§

fn mul(self, p: Pos2) -> Pos2

Performs the * operation. Read more
Source§

impl Mul<f32> for Pos2

Source§

type Output = Pos2

The resulting type after applying the * operator.
Source§

fn mul(self, factor: f32) -> Self

Performs the * operation. Read more
Source§

impl MulAssign<f32> for Pos2

Source§

fn mul_assign(&mut self, rhs: f32)

Performs the *= operation. Read more
Source§

impl PartialEq for Pos2

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for Pos2

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Sub<Vec2> for Pos2

Source§

type Output = Pos2

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Vec2) -> Self

Performs the - operation. Read more
Source§

impl Sub for Pos2

Source§

type Output = Vec2

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Self) -> Vec2

Performs the - operation. Read more
Source§

impl SubAssign<Vec2> for Pos2

Source§

fn sub_assign(&mut self, rhs: Vec2)

Performs the -= operation. Read more
Source§

impl Copy for Pos2

Source§

impl Eq for Pos2

Source§

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 UnsafeUnpin for Pos2

§

impl UnwindSafe for Pos2

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,