Struct comfy_wgpu::egui::Pos2

#[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§

§

impl Pos2

pub const ZERO: Pos2 = _

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

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 is_finite(self) -> bool

True if all members are also finite.

pub fn any_nan(self) -> bool

True if any member is NaN.

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

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

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

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

Linearly interpolate towards another point, so that 0.0 => self, 1.0 => other.

Trait Implementations§

§

impl Add<Vec2> for Pos2

§

type Output = Pos2

The resulting type after applying the + operator.
§

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

Performs the + operation. Read more
§

impl AddAssign<Vec2> for Pos2

§

fn add_assign(&mut self, rhs: Vec2)

Performs the += operation. Read more
§

impl Clone for Pos2

§

fn clone(&self) -> Pos2

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
§

impl Debug for Pos2

§

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

Formats the value using the given formatter. Read more
§

impl Default for Pos2

§

fn default() -> Pos2

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

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

§

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

Converts to this type from the input type.
§

impl From<&(f32, f32)> for Pos2

§

fn from(v: &(f32, f32)) -> Pos2

Converts to this type from the input type.
§

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

§

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

Converts to this type from the input type.
§

impl From<&Pos2> for (f32, f32)

§

fn from(v: &Pos2) -> (f32, f32)

Converts to this type from the input type.
§

impl From<[f32; 2]> for Pos2

§

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

Converts to this type from the input type.
§

impl From<(f32, f32)> for Pos2

§

fn from(v: (f32, f32)) -> Pos2

Converts to this type from the input type.
§

impl From<Pos2> for [f32; 2]

§

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

Converts to this type from the input type.
§

impl From<Pos2> for (f32, f32)

§

fn from(v: Pos2) -> (f32, f32)

Converts to this type from the input type.
§

impl Index<usize> for Pos2

§

type Output = f32

The returned type after indexing.
§

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

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

impl IndexMut<usize> for Pos2

§

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

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

impl Mul<Pos2> for &RectTransform

Transforms the position.

§

type Output = Pos2

The resulting type after applying the * operator.
§

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

Performs the * operation. Read more
§

impl Mul<Pos2> for RectTransform

Transforms the position.

§

type Output = Pos2

The resulting type after applying the * operator.
§

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

Performs the * operation. Read more
§

impl NumExt for Pos2

§

fn at_least(self, lower_limit: Pos2) -> Pos2

More readable version of self.max(lower_limit)
§

fn at_most(self, upper_limit: Pos2) -> Pos2

More readable version of self.min(upper_limit)
§

impl PartialEq<Pos2> for Pos2

§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

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

impl Sub<Pos2> for Pos2

§

type Output = Vec2

The resulting type after applying the - operator.
§

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

Performs the - operation. Read more
§

impl Sub<Vec2> for Pos2

§

type Output = Pos2

The resulting type after applying the - operator.
§

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

Performs the - operation. Read more
§

impl SubAssign<Vec2> for Pos2

§

fn sub_assign(&mut self, rhs: Vec2)

Performs the -= operation. Read more
§

impl Zeroable for Pos2

source§

fn zeroed() -> Self

§

impl Copy for Pos2

§

impl Eq for Pos2

§

impl Pod 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§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CheckedBitPattern for Twhere T: AnyBitPattern,

§

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

If this function returns true, then it must be valid to reinterpret bits as &Self.
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<S> FromSample<S> for S

§

fn from_sample_(s: S) -> S

source§

impl<T, U> Into<U> for Twhere 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.

§

impl<F, T> IntoSample<T> for Fwhere T: FromSample<F>,

§

fn into_sample(self) -> T

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

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
§

impl<T, U> ToSample<U> for Twhere U: FromSample<T>,

§

fn to_sample_(self) -> U

source§

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

§

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 Twhere U: TryFrom<T>,

§

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.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> Any for Twhere T: Any,

source§

impl<T> AnyBitPattern for Twhere T: Pod,

§

impl<T> CloneAny for Twhere T: Any + Clone,

§

impl<T> Component for Twhere T: Send + Sync + 'static,

§

impl<S, T> Duplex<S> for Twhere T: FromSample<S> + ToSample<S>,

source§

impl<T> NoUninit for Twhere T: Pod,

source§

impl<T> SerializableAny for Twhere T: 'static + Any + Clone + Send + Sync,