[][src]Struct mini_math::Vector

pub struct Vector {
    pub x: f32,
    pub y: f32,
    pub z: f32,
}

Fields

x: f32y: f32z: f32

Methods

impl Vector[src]

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

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

pub fn cross(&self, rhs: &Self) -> Self[src]

pub fn magnitude_squared(&self) -> f32[src]

pub fn magnitude(&self) -> f32[src]

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

Trait Implementations

impl Clone for Vector[src]

impl Copy for Vector[src]

impl PartialEq<Vector> for Vector[src]

impl Debug for Vector[src]

impl Sub<f32> for Vector[src]

type Output = Vector

The resulting type after applying the - operator.

impl Sub<Vector> for Vector[src]

type Output = Vector

The resulting type after applying the - operator.

impl Sub<Vector> for Point[src]

type Output = Point

The resulting type after applying the - operator.

impl Add<f32> for Vector[src]

type Output = Vector

The resulting type after applying the + operator.

impl Add<Vector> for Vector[src]

type Output = Vector

The resulting type after applying the + operator.

impl Add<Vector> for Point[src]

type Output = Point

The resulting type after applying the + operator.

impl Mul<Vector> for Matrix[src]

type Output = Vector

The resulting type after applying the * operator.

impl Mul<f32> for Vector[src]

type Output = Vector

The resulting type after applying the * operator.

impl StructuralPartialEq for Vector[src]

Auto Trait Implementations

impl Send for Vector

impl Sync for Vector

impl Unpin for Vector

impl UnwindSafe for Vector

impl RefUnwindSafe for Vector

Blanket Implementations

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

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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