Struct freya_engine::prelude::Point

#[repr(C)]
pub struct Point { pub x: f32, pub y: f32, }

Fields§

§x: f32§y: f32

Implementations§

§

impl Point

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

pub fn is_zero(self) -> bool

pub fn set(&mut self, x: f32, y: f32)

pub fn iset(&mut self, p: impl Into<IPoint>)

pub fn set_abs(&mut self, p: impl Into<Point>)

pub fn offset_points(points: &mut [Point], offset: impl Into<Point>)

pub fn offset(&mut self, d: impl Into<Point>)

pub fn length(self) -> f32

pub fn distance_to_origin(self) -> f32

pub fn normalize(&mut self) -> bool

pub fn set_normalize(&mut self, x: f32, y: f32) -> bool

pub fn set_length(&mut self, length: f32) -> bool

pub fn set_length_xy(&mut self, x: f32, y: f32, length: f32) -> bool

pub fn scaled(self, scale: f32) -> Point

pub fn scale(&mut self, scale: f32)

pub fn negate(&mut self)

pub fn is_finite(self) -> bool

pub fn equals(self, x: f32, y: f32) -> bool

pub fn length_xy(x: f32, y: f32) -> f32

pub fn normalize_vector(v: &mut Point) -> f32

pub fn distance(a: Point, b: Point) -> f32

pub fn dot_product(a: Point, b: Point) -> f32

pub fn cross_product(a: Point, b: Point) -> f32

pub fn cross(self, vec: Point) -> f32

pub fn dot(self, vec: Point) -> f32

Trait Implementations§

§

impl Add<Size> for Point

§

type Output = Point

The resulting type after applying the + operator.
§

fn add(self, rhs: Size) -> Point

Performs the + operation. Read more
§

impl Add for Point

§

type Output = Point

The resulting type after applying the + operator.
§

fn add(self, rhs: Point) -> Point

Performs the + operation. Read more
§

impl AddAssign<Size> for Point

§

fn add_assign(&mut self, rhs: Size)

Performs the += operation. Read more
§

impl AddAssign for Point

§

fn add_assign(&mut self, rhs: Point)

Performs the += operation. Read more
§

impl Clone for Point

§

fn clone(&self) -> Point

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 Contains<&Point> for Rect

§

fn contains(&self, p: &Point) -> bool

§

impl Contains<Point> for Rect

§

fn contains(&self, p: Point) -> bool

§

impl Debug for Point

§

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

Formats the value using the given formatter. Read more
§

impl Default for Point

§

fn default() -> Point

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

impl Div<f32> for Point

§

type Output = Point

The resulting type after applying the / operator.
§

fn div(self, rhs: f32) -> Point

Performs the / operation. Read more
§

impl DivAssign<f32> for Point

§

fn div_assign(&mut self, rhs: f32)

Performs the /= operation. Read more
§

impl From<(f32, f32)> for Point

§

fn from(source: (f32, f32)) -> Point

Converts to this type from the input type.
§

impl From<(i32, i32)> for Point

§

fn from(source: (i32, i32)) -> Point

Converts to this type from the input type.
§

impl From<IPoint> for Point

§

fn from(source: IPoint) -> Point

Converts to this type from the input type.
§

impl Mul<f32> for Point

§

type Output = Point

The resulting type after applying the * operator.
§

fn mul(self, rhs: f32) -> Point

Performs the * operation. Read more
§

impl MulAssign<f32> for Point

§

fn mul_assign(&mut self, rhs: f32)

Performs the *= operation. Read more
§

impl Neg for Point

§

type Output = Point

The resulting type after applying the - operator.
§

fn neg(self) -> <Point as Neg>::Output

Performs the unary - operation. Read more
§

impl PartialEq for Point

§

fn eq(&self, other: &Point) -> 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<Size> for Point

§

type Output = Point

The resulting type after applying the - operator.
§

fn sub(self, rhs: Size) -> Point

Performs the - operation. Read more
§

impl Sub for Point

§

type Output = Point

The resulting type after applying the - operator.
§

fn sub(self, rhs: Point) -> Point

Performs the - operation. Read more
§

impl SubAssign<Size> for Point

§

fn sub_assign(&mut self, rhs: Size)

Performs the -= operation. Read more
§

impl SubAssign for Point

§

fn sub_assign(&mut self, rhs: Point)

Performs the -= operation. Read more
§

impl Copy for Point

§

impl StructuralPartialEq for Point

Auto Trait Implementations§

§

impl Freeze for Point

§

impl RefUnwindSafe for Point

§

impl Send for Point

§

impl Sync for Point

§

impl Unpin for Point

§

impl UnwindSafe for Point

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

§

impl<N, T> NativeTransmutableWrapper<N> for T
where T: NativeTransmutable<N>,

§

fn wrap(native: N) -> T

§

fn unwrap(self) -> N

§

fn inner(&self) -> &N

§

fn inner_mut(&mut self) -> &mut N

source§

impl<T> ToOwned for T
where 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
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.