[−][src]Struct mvt::Vec2
2-dimensional vector / point.
Fields
x: f64y: f64Implementations
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.
fn add(self, other: Self) -> Self[src]
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.
fn div(self, s: f64) -> Self[src]
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.
fn mul(self, s: Vec2) -> Vec2[src]
impl Mul<f64> for Vec2[src]
type Output = Self
The resulting type after applying the * operator.
fn mul(self, s: f64) -> Self[src]
impl Neg for Vec2[src]
impl PartialEq<Vec2> for Vec2[src]
impl StructuralPartialEq for Vec2[src]
impl Sub<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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,