Struct Basis2

Source
pub struct Basis2<S> { /* private fields */ }
Expand description

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

Implementations§

Source§

impl<S> Basis2<S>
where S: BaseFloat,

Source

pub fn look_at_stable(dir: Vector2<S>, flip: bool) -> Basis2<S>

Trait Implementations§

Source§

impl<S> AbsDiffEq for Basis2<S>
where S: BaseFloat,

Source§

type Epsilon = <S as AbsDiffEq>::Epsilon

Used for specifying relative comparisons.
Source§

fn default_epsilon() -> <S as AbsDiffEq>::Epsilon

The default tolerance to use when testing values that are close together. Read more
Source§

fn abs_diff_eq( &self, other: &Basis2<S>, epsilon: <S as AbsDiffEq>::Epsilon, ) -> bool

A test for equality that uses the absolute difference to compute the approximate equality of two numbers.
Source§

fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool

The inverse of AbsDiffEq::abs_diff_eq.
Source§

impl<S> AsRef<Matrix2<S>> for Basis2<S>
where S: BaseFloat,

Source§

fn as_ref(&self) -> &Matrix2<S>

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<S> Clone for Basis2<S>
where S: Clone,

Source§

fn clone(&self) -> Basis2<S>

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<S> Debug for Basis2<S>
where S: Debug,

Source§

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

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

impl<S> From<Basis2<S>> for Matrix2<S>
where S: BaseFloat,

Source§

fn from(b: Basis2<S>) -> Matrix2<S>

Converts to this type from the input type.
Source§

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

Source§

type Output = Basis2<S>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &'a Basis2<S>) -> Basis2<S>

Performs the * operation. Read more
Source§

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

Source§

type Output = Basis2<S>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &'a Basis2<S>) -> Basis2<S>

Performs the * operation. Read more
Source§

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

Source§

type Output = Basis2<S>

The resulting type after applying the * operator.
Source§

fn mul(self, other: Basis2<S>) -> Basis2<S>

Performs the * operation. Read more
Source§

impl<S> Mul for Basis2<S>
where S: BaseFloat,

Source§

type Output = Basis2<S>

The resulting type after applying the * operator.
Source§

fn mul(self, other: Basis2<S>) -> Basis2<S>

Performs the * operation. Read more
Source§

impl<S> One for Basis2<S>
where S: BaseFloat,

Source§

fn one() -> Basis2<S>

Returns the multiplicative identity element of Self, 1. Read more
Source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
Source§

fn is_one(&self) -> bool
where Self: PartialEq,

Returns true if self is equal to the multiplicative identity. Read more
Source§

impl<S> PartialEq for Basis2<S>
where S: PartialEq,

Source§

fn eq(&self, other: &Basis2<S>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

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

Source§

fn product<I>(iter: I) -> Basis2<S>
where I: Iterator<Item = &'a Basis2<S>>,

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl<S> Product for Basis2<S>
where S: BaseFloat,

Source§

fn product<I>(iter: I) -> Basis2<S>
where I: Iterator<Item = Basis2<S>>,

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl<S> RelativeEq for Basis2<S>
where S: BaseFloat,

Source§

fn default_max_relative() -> <S as AbsDiffEq>::Epsilon

The default relative tolerance for testing values that are far-apart. Read more
Source§

fn relative_eq( &self, other: &Basis2<S>, epsilon: <S as AbsDiffEq>::Epsilon, max_relative: <S as AbsDiffEq>::Epsilon, ) -> bool

A test for equality that uses a relative comparison if the values are far apart.
Source§

fn relative_ne( &self, other: &Rhs, epsilon: Self::Epsilon, max_relative: Self::Epsilon, ) -> bool

The inverse of RelativeEq::relative_eq.
Source§

impl<S> Rotation for Basis2<S>
where S: BaseFloat,

Source§

type Space = Point2<S>

Source§

fn look_at(dir: Vector2<S>, up: Vector2<S>) -> Basis2<S>

Create a rotation to a given direction with an ‘up’ vector.
Source§

fn between_vectors(a: Vector2<S>, b: Vector2<S>) -> Basis2<S>

Create a shortest rotation to transform vector ‘a’ into ‘b’. Both given vectors are assumed to have unit length.
Source§

fn rotate_vector(&self, vec: Vector2<S>) -> Vector2<S>

Rotate a vector using this rotation.
Source§

fn invert(&self) -> Basis2<S>

Create a new rotation which “un-does” this rotation. That is, r * r.invert() is the identity.
Source§

fn rotate_point(&self, point: Self::Space) -> Self::Space

Rotate a point using this rotation, by converting it to its representation as a vector.
Source§

impl<S> Rotation2 for Basis2<S>
where S: BaseFloat,

Source§

type Scalar = S

Source§

fn from_angle<A>(theta: A) -> Basis2<S>
where A: Into<Rad<S>>,

Create a rotation by a given angle. Thus is a redundant case of both from_axis_angle() and from_euler() for 2D space.
Source§

impl<S> UlpsEq for Basis2<S>
where S: BaseFloat,

Source§

fn default_max_ulps() -> u32

The default ULPs to tolerate when testing values that are far-apart. Read more
Source§

fn ulps_eq( &self, other: &Basis2<S>, epsilon: <S as AbsDiffEq>::Epsilon, max_ulps: u32, ) -> bool

A test for equality that uses units in the last place (ULP) if the values are far apart.
Source§

fn ulps_ne(&self, other: &Rhs, epsilon: Self::Epsilon, max_ulps: u32) -> bool

The inverse of UlpsEq::ulps_eq.
Source§

impl<S> Copy for Basis2<S>
where S: Copy,

Source§

impl<S> StructuralPartialEq for Basis2<S>

Auto Trait Implementations§

§

impl<S> Freeze for Basis2<S>
where S: Freeze,

§

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§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> Downcast<T> for T

Source§

fn downcast(&self) -> &T

Source§

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

Source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<S> FromSample<S> for S

Source§

fn from_sample_(s: S) -> S

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<F, T> IntoSample<T> for F
where T: FromSample<F>,

Source§

fn into_sample(self) -> T

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

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,

Source§

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> ToSample<U> for T
where U: FromSample<T>,

Source§

fn to_sample_(self) -> U

Source§

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

Source§

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>,

Source§

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<T> Upcast<T> for T

Source§

fn upcast(&self) -> Option<&T>

Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<S, T> Duplex<S> for T
where T: FromSample<S> + ToSample<S>,

Source§

impl<T> WasmNotSend for T
where T: Send,

Source§

impl<T> WasmNotSendSync for T

Source§

impl<T> WasmNotSync for T
where T: Sync,