[][src]Struct rg3d_core::math::vec2::Vec2

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

Fields

x: f32y: f32

Implementations

impl Vec2[src]

pub const ZERO: Self[src]

pub const UNIT: Self[src]

pub const X: Self[src]

pub const Y: Self[src]

pub const fn xx(self) -> Self[src]

pub const fn yy(self) -> Self[src]

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

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

pub fn len(self) -> f32[src]

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

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

pub fn scale(self, scalar: f32) -> Self[src]

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

Per component min

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

Per component max

pub fn normalized(self) -> Option<Self>[src]

pub fn reciprocal(&self) -> Vec2[src]

Trait Implementations

impl Add<Vec2> for Vec2[src]

type Output = Self

The resulting type after applying the + operator.

impl AddAssign<Vec2> for Vec2[src]

impl Clone for Vec2[src]

impl Copy for Vec2[src]

impl Debug for Vec2[src]

impl Default for Vec2[src]

impl Eq for Vec2[src]

impl FieldData for Vec2[src]

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

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

impl Hash for Vec2[src]

impl Neg for Vec2[src]

type Output = Self

The resulting type after applying the - operator.

impl PartialEq<Vec2> for Vec2[src]

impl Sub<Vec2> for Vec2[src]

type Output = Self

The resulting type after applying the - operator.

impl SubAssign<Vec2> for Vec2[src]

Auto Trait Implementations

impl RefUnwindSafe for Vec2

impl Send for Vec2

impl Sync for Vec2

impl Unpin for Vec2

impl UnwindSafe for Vec2

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.

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.

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

impl<T> Visit for T where
    T: FieldData + 'static, 
[src]