[][src]Struct mini_math::Vector

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

A vector in 3D space.

Fields

x: f32y: f32z: f32

Methods

impl Vector[src]

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

Create a vector from x, y, z coordinates

pub fn zero() -> Self[src]

The additive identity

pub fn one() -> Self[src]

The multiplicative identity

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

Compute the dot product between this vector and another

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

Compute the cross product between this vector and another.

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

The length of this vector squared. Note that this avoids an expensive square root.

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

The length of this vector. Note that this involves an expensive square root.

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

Normalize this vector to unit length. Note that this involves an expensive square root.

Trait Implementations

impl<'_> NearlyEqual for &'_ Vector[src]

impl From<Vector> for Point[src]

fn from(v: Vector) -> Self[src]

Convert a vector into a point

impl From<Point> for Vector[src]

fn from(p: Point) -> Self[src]

Convert a point into a vector

impl Clone for Vector[src]

impl Copy for Vector[src]

impl PartialEq<Vector> for Vector[src]

impl Debug for Vector[src]

impl Div<f32> for Vector[src]

type Output = Vector

The resulting type after applying the / operator.

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 Neg for Vector[src]

type Output = Self

The resulting type after applying the - operator.

impl AddAssign<f32> for Vector[src]

impl AddAssign<Vector> for Vector[src]

impl AddAssign<Vector> for Point[src]

impl SubAssign<f32> for Vector[src]

impl SubAssign<Vector> for Vector[src]

impl SubAssign<Vector> for Point[src]

impl MulAssign<f32> for Vector[src]

impl DivAssign<f32> for Vector[src]

impl StructuralPartialEq for Vector[src]

impl AsBytes for Vector[src]

impl FromBytes 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]