Struct cgmath::Basis3

source ·
pub struct Basis3<S> { /* private fields */ }
Expand description

A three-dimensional rotation matrix.

The matrix is guaranteed to be orthogonal, so some operations, specifically inversion, can be implemented more efficiently than the implementations for math::Matrix3. To ensure orthogonality is maintained, the operations have been restricted to a subeset of those implemented on Matrix3.

Implementations§

source§

impl<S: BaseFloat> Basis3<S>

source

pub fn from_quaternion(quaternion: &Quaternion<S>) -> Basis3<S>

Create a new rotation matrix from a quaternion.

Trait Implementations§

source§

impl<S: BaseFloat> ApproxEq for Basis3<S>

§

type Epsilon = S

source§

fn approx_eq_eps(&self, other: &Basis3<S>, epsilon: &S) -> bool

source§

fn approx_epsilon() -> Self::Epsilon

source§

fn approx_eq(&self, other: &Self) -> bool

source§

impl<S> AsRef<Matrix3<S>> for Basis3<S>

source§

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

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

impl<S: Clone> Clone for Basis3<S>

source§

fn clone(&self) -> Basis3<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: Decodable> Decodable for Basis3<S>

source§

fn decode<__D: Decoder>(d: &mut __D) -> Result<Basis3<S>, __D::Error>

Deserialize a value using a Decoder.
source§

impl<S: Encodable> Encodable for Basis3<S>

source§

fn encode<__S: Encoder>(&self, s: &mut __S) -> Result<(), __S::Error>

Serialize a value using an Encoder.
source§

impl<S: BaseFloat> From<Basis3<S>> for Matrix3<S>

source§

fn from(b: Basis3<S>) -> Matrix3<S>

Converts to this type from the input type.
source§

impl<S: BaseFloat> From<Basis3<S>> for Quaternion<S>

source§

fn from(b: Basis3<S>) -> Quaternion<S>

Converts to this type from the input type.
source§

impl<S: BaseFloat> From<Quaternion<S>> for Basis3<S>

source§

fn from(quat: Quaternion<S>) -> Basis3<S>

Converts to this type from the input type.
source§

impl<S: PartialEq> PartialEq<Basis3<S>> for Basis3<S>

source§

fn eq(&self, other: &Basis3<S>) -> 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<S: BaseFloat> Rotation<Point3<S>> for Basis3<S>

source§

fn one() -> Basis3<S>

Create the identity transform (causes no transformation).
source§

fn look_at(dir: Vector3<S>, up: Vector3<S>) -> Basis3<S>

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

fn between_vectors(a: Vector3<S>, b: Vector3<S>) -> Basis3<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: Vector3<S>) -> Vector3<S>

Rotate a vector using this rotation.
source§

fn concat(&self, other: &Basis3<S>) -> Basis3<S>

Create a new rotation which combines both this rotation, and another.
source§

fn concat_self(&mut self, other: &Basis3<S>)

Modify this rotation in-place by combining it with another.
source§

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

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

fn invert_self(&mut self)

Invert this rotation in-place.
source§

fn rotate_point(&self, point: P) -> P

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

impl<S: BaseFloat> Rotation3<S> for Basis3<S>

source§

fn from_axis_angle(axis: Vector3<S>, angle: Rad<S>) -> Basis3<S>

Create a rotation using an angle around a given axis.
source§

fn from_euler(x: Rad<S>, y: Rad<S>, z: Rad<S>) -> Basis3<S>

Create a rotation from a set of euler angles. Read more
source§

fn from_angle_x(theta: Rad<S>) -> Basis3<S>

Create a rotation from an angle around the x axis (pitch).
source§

fn from_angle_y(theta: Rad<S>) -> Basis3<S>

Create a rotation from an angle around the y axis (yaw).
source§

fn from_angle_z(theta: Rad<S>) -> Basis3<S>

Create a rotation from an angle around the z axis (roll).
source§

impl<S: Copy> Copy for Basis3<S>

source§

impl<S> StructuralPartialEq for Basis3<S>

Auto Trait Implementations§

§

impl<S> RefUnwindSafe for Basis3<S>where S: RefUnwindSafe,

§

impl<S> Send for Basis3<S>where S: Send,

§

impl<S> Sync for Basis3<S>where S: Sync,

§

impl<S> Unpin for Basis3<S>where S: Unpin,

§

impl<S> UnwindSafe for Basis3<S>where S: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> ToOwned for Twhere 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 Twhere 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 Twhere 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.