[][src]Struct mvt::Vec2

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

2-dimensional vector / point.

Fields

x: f64y: f64

Methods

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 PartialEq<Vec2> for Vec2[src]

impl Clone for Vec2[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Vec2[src]

impl Add<Vec2> for Vec2[src]

type Output = Self

The resulting type after applying the + operator.

impl Sub<Vec2> for Vec2[src]

type Output = Self

The resulting type after applying the - operator.

impl Mul<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 Div<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 Debug for Vec2[src]

Auto Trait Implementations

impl Send for Vec2

impl Sync for Vec2

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.