Struct rustic_zen::geom::Vector

source ·
pub struct Vector {
    pub x: f64,
    pub y: f64,
}
Expand description

A standard 2D vector implementaion.

Fields§

§x: f64§y: f64

Implementations§

source§

impl Vector

source

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

Create new vector. This is just a helper given the fields are public.

source

pub fn magnitude(&self) -> f64

gets the linear size of the vector.

source

pub fn normalized(&self) -> Vector

returns a copy of this vector with a length of 1

source

pub fn normal(&self) -> Vector

get normal of this vector

source

pub fn mul_e(&self, other: &Vector) -> Vector

element wise multiply (it can come in handy)

source

pub fn scale_e(&self, sx: f64, sy: f64) -> Vector

element wise scaling with seperate x and y scaling factors

source

pub fn rotate(&self, theta: f64) -> Vector

apply a rotation matrix constructed around theta to this vector

source

pub fn cross(&self, other: &Vector) -> f64

Cross product of this vector with other

source

pub fn dot(&self, other: &Vector) -> f64

Dot product of this vector with other

source

pub fn reflect(&self, normal: &Vector) -> Vector

Caluate a normal reflection of this vector as a direction vector against a surface with a normal vector of normal.

§Parameters:
  • self: a Vector representing the direction to be relected.
  • normal: a Vector representing the normal of the surface being reflected off.

Neither vector needs to be normalised.

source

pub fn p(self) -> Point

Turn this vector back into a Point.

Only use when you are sure this vector actually represents a spacial coordinate.

Trait Implementations§

source§

impl Add<Point> for Vector

§

type Output = Point

The resulting type after applying the + operator.
source§

fn add(self, rhs: Point) -> Point

Performs the + operation. Read more
source§

impl Add<Vector> for Point

§

type Output = Point

The resulting type after applying the + operator.
source§

fn add(self, rhs: Vector) -> Point

Performs the + operation. Read more
source§

impl Add for Vector

§

type Output = Vector

The resulting type after applying the + operator.
source§

fn add(self, rhs: Vector) -> Vector

Performs the + operation. Read more
source§

impl Clone for Vector

source§

fn clone(&self) -> Vector

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Vector

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<(f64, f64)> for Vector

source§

fn from(value: (f64, f64)) -> Self

Converts to this type from the input type.
source§

impl Mul<Vector> for Matrix

§

type Output = Vector

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Vector) -> Vector

Performs the * operation. Read more
source§

impl Mul<f64> for Vector

§

type Output = Vector

The resulting type after applying the * operator.
source§

fn mul(self, rhs: f64) -> Vector

Performs the * operation. Read more
source§

impl Neg for Vector

§

type Output = Vector

The resulting type after applying the - operator.
source§

fn neg(self) -> Vector

Performs the unary - operation. Read more
source§

impl PartialEq for Vector

source§

fn eq(&self, other: &Vector) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for Vector

source§

fn partial_cmp(&self, other: &Vector) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Sub<Point> for Vector

§

type Output = Point

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Point) -> Point

Performs the - operation. Read more
source§

impl Sub<Vector> for Point

§

type Output = Point

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Vector) -> Point

Performs the - operation. Read more
source§

impl Sub for Vector

§

type Output = Vector

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Vector) -> Vector

Performs the - operation. Read more
source§

impl Copy for Vector

source§

impl StructuralPartialEq for Vector

Auto Trait Implementations§

§

impl Freeze for Vector

§

impl RefUnwindSafe for Vector

§

impl Send for Vector

§

impl Sync for Vector

§

impl Unpin for Vector

§

impl UnwindSafe for Vector

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V