[][src]Struct mvt::Vec2

pub struct Vec2 {
    pub x: f64,
    pub y: f64,
}

2-dimensional vector / point.

Fields

x: f64y: f64

Implementations

impl Vec2[src]

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

Create a new Vec2

pub fn zero() -> Self[src]

Create a zero Vec2

pub fn mag(self) -> f64[src]

Get the magnitude of a Vec2

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

Create a copy normalized to unit length

pub fn dist_sq(self, other: Self) -> f64[src]

Calculate the distance squared between two Vec2

pub fn dist(self, other: Self) -> f64[src]

Calculate the distance between two Vec2

Trait Implementations

impl Add<Vec2> for Vec2[src]

type Output = Self

The resulting type after applying the + operator.

impl Clone for Vec2[src]

impl Copy for Vec2[src]

impl Debug for Vec2[src]

impl Div<f64> for Vec2[src]

type Output = Self

The resulting type after applying the / operator.

impl Mul<Vec2> for Vec2[src]

type Output = f64

The resulting type after applying the * operator.

fn mul(self, other: Self) -> f64[src]

Calculate the cross product of two Vec2

impl Mul<Vec2> for Transform[src]

type Output = Vec2

The resulting type after applying the * operator.

impl Mul<f64> for Vec2[src]

type Output = Self

The resulting type after applying the * operator.

impl Neg for Vec2[src]

type Output = Self

The resulting type after applying the - operator.

impl PartialEq<Vec2> for Vec2[src]

impl StructuralPartialEq for Vec2[src]

impl Sub<Vec2> for Vec2[src]

type Output = Self

The resulting type after applying the - operator.

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.