Struct nannou::math::Basis2[][src]

pub struct Basis2<S> { /* fields omitted */ }

A two-dimensional rotation matrix.

The matrix is guaranteed to be orthogonal, so some operations can be implemented more efficiently than the implementations for math::Matrix2. To enforce orthogonality at the type level the operations have been restricted to a subset of those implemented on Matrix2.

Example

Suppose we want to rotate a vector that lies in the x-y plane by some angle. We can accomplish this quite easily with a two-dimensional rotation matrix:

use cgmath::Rad;
use cgmath::Vector2;
use cgmath::{Matrix, Matrix2};
use cgmath::{Rotation, Rotation2, Basis2};
use cgmath::UlpsEq;
use std::f64;

// For simplicity, we will rotate the unit x vector to the unit y vector --
// so the angle is 90 degrees, or π/2.
let unit_x: Vector2<f64> = Vector2::unit_x();
let rot: Basis2<f64> = Rotation2::from_angle(Rad(0.5f64 * f64::consts::PI));

// Rotate the vector using the two-dimensional rotation matrix:
let unit_y = rot.rotate_vector(unit_x);

// Since sin(π/2) may not be exactly zero due to rounding errors, we can
// use approx's assert_ulps_eq!() feature to show that it is close enough.
// assert_ulps_eq!(&unit_y, &Vector2::unit_y()); // TODO: Figure out how to use this

// This is exactly equivalent to using the raw matrix itself:
let unit_y2: Matrix2<_> = rot.into();
let unit_y2 = unit_y2 * unit_x;
assert_eq!(unit_y2, unit_y);

// Note that we can also concatenate rotations:
let rot_half: Basis2<f64> = Rotation2::from_angle(Rad(0.25f64 * f64::consts::PI));
let unit_y3 = (rot_half * rot_half).rotate_vector(unit_x);
// assert_ulps_eq!(&unit_y3, &unit_y2); // TODO: Figure out how to use this

Trait Implementations

impl<S> AbsDiffEq<Basis2<S>> for Basis2<S> where
    S: BaseFloat
[src]

type Epsilon = <S as AbsDiffEq<S>>::Epsilon

Used for specifying relative comparisons.

impl<S> AsRef<Matrix2<S>> for Basis2<S> where
    S: BaseFloat
[src]

impl<S> Clone for Basis2<S> where
    S: Clone
[src]

impl<S> Copy for Basis2<S> where
    S: Copy
[src]

impl<S> Debug for Basis2<S> where
    S: Debug
[src]

impl<'de, S> Deserialize<'de> for Basis2<S> where
    S: Deserialize<'de>, 
[src]

impl<S> From<Basis2<S>> for Matrix2<S> where
    S: BaseFloat
[src]

impl<'a, 'b, S> Mul<&'a Basis2<S>> for &'b Basis2<S> where
    S: BaseFloat
[src]

type Output = Basis2<S>

The resulting type after applying the * operator.

impl<'a, S> Mul<&'a Basis2<S>> for Basis2<S> where
    S: BaseFloat
[src]

type Output = Basis2<S>

The resulting type after applying the * operator.

impl<S> Mul<Basis2<S>> for Basis2<S> where
    S: BaseFloat
[src]

type Output = Basis2<S>

The resulting type after applying the * operator.

impl<'a, S> Mul<Basis2<S>> for &'a Basis2<S> where
    S: BaseFloat
[src]

type Output = Basis2<S>

The resulting type after applying the * operator.

impl<S> One for Basis2<S> where
    S: BaseFloat
[src]

impl<S> PartialEq<Basis2<S>> for Basis2<S> where
    S: PartialEq<S>, 
[src]

impl<'a, S> Product<&'a Basis2<S>> for Basis2<S> where
    S: 'a + BaseFloat
[src]

impl<S> Product<Basis2<S>> for Basis2<S> where
    S: BaseFloat
[src]

impl<S> RelativeEq<Basis2<S>> for Basis2<S> where
    S: BaseFloat
[src]

impl<S> Rotation<Point2<S>> for Basis2<S> where
    S: BaseFloat
[src]

impl<S> Rotation2<S> for Basis2<S> where
    S: BaseFloat
[src]

impl<S> Serialize for Basis2<S> where
    S: Serialize
[src]

impl<S> StructuralPartialEq for Basis2<S>[src]

impl<S> UlpsEq<Basis2<S>> for Basis2<S> where
    S: BaseFloat
[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for Basis2<S> where
    S: RefUnwindSafe

impl<S> Send for Basis2<S> where
    S: Send

impl<S> Sync for Basis2<S> where
    S: Sync

impl<S> Unpin for Basis2<S> where
    S: Unpin

impl<S> UnwindSafe for Basis2<S> where
    S: UnwindSafe

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    T: Component + Float,
    D: AdaptFrom<S, Swp, Dwp, T>,
    Swp: WhitePoint,
    Dwp: WhitePoint
[src]

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

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

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

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Downcast<T> for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> One for T where
    T: One

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SetParameter for T

impl<T> Style for T where
    T: Any + Debug + PartialEq<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> Upcast<T> for T

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