Skip to main content

Point2

Struct Point2 

Source
pub struct Point2(pub [f32; 2]);
Expand description

A 2D point or size that can be animated.

Wraps [f32; 2] to provide VectorArithmetic implementation.

Tuple Fields§

§0: [f32; 2]

Implementations§

Source§

impl Point2

Source

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

Creates a new Point2 from x and y coordinates.

Source

pub const fn x(&self) -> f32

Returns the x coordinate.

Source

pub const fn y(&self) -> f32

Returns the y coordinate.

Trait Implementations§

Source§

impl Add for Point2

Source§

type Output = Point2

The resulting type after applying the + operator.
Source§

fn add(self, other: Self) -> Self

Performs the + operation. Read more
Source§

impl Clone for Point2

Source§

fn clone(&self) -> Point2

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Copy for Point2

Source§

impl Debug for Point2

Source§

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

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

impl Default for Point2

Source§

fn default() -> Point2

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

impl From<Point2> for [f32; 2]

Source§

fn from(p: Point2) -> Self

Converts to this type from the input type.
Source§

impl From<[f32; 2]> for Point2

Source§

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

Converts to this type from the input type.
Source§

impl Mul<f64> for Point2

Source§

type Output = Point2

The resulting type after applying the * operator.
Source§

fn mul(self, scalar: f64) -> Self

Performs the * operation. Read more
Source§

impl PartialEq for Point2

Source§

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

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Point2

Source§

impl Sub for Point2

Source§

type Output = Point2

The resulting type after applying the - operator.
Source§

fn sub(self, other: Self) -> Self

Performs the - operation. Read more

Auto Trait Implementations§

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> IdentifiableExt for T

Source§

fn use_id<F, Id>(self, f: F) -> UseId<Self, F>
where F: Fn(&Self) -> Id, Id: Ord + Hash,

Wraps the value in a UseId with the provided identification function.
Source§

fn self_id(self) -> SelfId<Self>

Wraps the value in a SelfId, making the value serve as its own identifier.
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, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

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> VectorArithmetic for T
where T: Send + 'static + Add<Output = T> + Sub<Output = T> + Clone + Mul<f64, Output = T> + Default,

Source§

fn lerp(&self, other: &Self, t: f64) -> Self

Linear interpolation: self + (other - self) * t