[−][src]Struct cgmath::Basis3
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 subset of those implemented on Matrix3
.
Methods
impl<S: BaseFloat> Basis3<S>
[src]
pub fn from_quaternion(quaternion: &Quaternion<S>) -> Basis3<S>
[src]
Create a new rotation matrix from a quaternion.
Trait Implementations
impl<S: BaseFloat> Rotation<Point3<S>> for Basis3<S>
[src]
fn look_at(dir: Vector3<S>, up: Vector3<S>) -> Basis3<S>
[src]
fn between_vectors(a: Vector3<S>, b: Vector3<S>) -> Basis3<S>
[src]
fn rotate_vector(&self, vec: Vector3<S>) -> Vector3<S>
[src]
fn invert(&self) -> Basis3<S>
[src]
fn rotate_point(&self, point: P) -> P
[src]
impl<S: BaseFloat> Rotation3<S> for Basis3<S>
[src]
fn from_axis_angle<A: Into<Rad<S>>>(axis: Vector3<S>, angle: A) -> Basis3<S>
[src]
fn from_angle_x<A: Into<Rad<S>>>(theta: A) -> Basis3<S>
[src]
fn from_angle_y<A: Into<Rad<S>>>(theta: A) -> Basis3<S>
[src]
fn from_angle_z<A: Into<Rad<S>>>(theta: A) -> Basis3<S>
[src]
impl<S: Clone> Clone for Basis3<S>
[src]
impl<S> AsRef<Matrix3<S>> for Basis3<S>
[src]
impl<S: PartialEq> PartialEq<Basis3<S>> for Basis3<S>
[src]
impl<S: BaseFloat> From<Quaternion<S>> for Basis3<S>
[src]
fn from(quat: Quaternion<S>) -> Basis3<S>
[src]
impl<S: BaseFloat> From<Basis3<S>> for Matrix3<S>
[src]
impl<S: BaseFloat> From<Basis3<S>> for Quaternion<S>
[src]
fn from(b: Basis3<S>) -> Quaternion<S>
[src]
impl<A: Angle> From<Euler<A>> for Basis3<A::Unitless> where
A: Into<Rad<<A as Angle>::Unitless>>,
[src]
A: Into<Rad<<A as Angle>::Unitless>>,
fn from(src: Euler<A>) -> Basis3<A::Unitless>
[src]
Create a three-dimensional rotation matrix from a set of euler angles.
impl<S: Copy> Copy for Basis3<S>
[src]
impl<S: BaseFloat> Mul<Basis3<S>> for Basis3<S>
[src]
type Output = Basis3<S>
The resulting type after applying the *
operator.
fn mul(self, other: Basis3<S>) -> Basis3<S>
[src]
impl<'a, S: BaseFloat> Mul<&'a Basis3<S>> for Basis3<S>
[src]
type Output = Basis3<S>
The resulting type after applying the *
operator.
fn mul(self, other: &'a Basis3<S>) -> Basis3<S>
[src]
impl<'a, S: BaseFloat> Mul<Basis3<S>> for &'a Basis3<S>
[src]
type Output = Basis3<S>
The resulting type after applying the *
operator.
fn mul(self, other: Basis3<S>) -> Basis3<S>
[src]
impl<'a, 'b, S: BaseFloat> Mul<&'a Basis3<S>> for &'b Basis3<S>
[src]
type Output = Basis3<S>
The resulting type after applying the *
operator.
fn mul(self, other: &'a Basis3<S>) -> Basis3<S>
[src]
impl<S: Debug> Debug for Basis3<S>
[src]
impl<S: BaseFloat> Product<Basis3<S>> for Basis3<S>
[src]
impl<'a, S: 'a + BaseFloat> Product<&'a Basis3<S>> for Basis3<S>
[src]
impl<S: BaseFloat> AbsDiffEq<Basis3<S>> for Basis3<S>
[src]
type Epsilon = S::Epsilon
Used for specifying relative comparisons.
fn default_epsilon() -> S::Epsilon
[src]
fn abs_diff_eq(&self, other: &Self, epsilon: S::Epsilon) -> bool
[src]
fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool
[src]
impl<S: BaseFloat> RelativeEq<Basis3<S>> for Basis3<S>
[src]
fn default_max_relative() -> S::Epsilon
[src]
fn relative_eq(
&self,
other: &Self,
epsilon: S::Epsilon,
max_relative: S::Epsilon
) -> bool
[src]
&self,
other: &Self,
epsilon: S::Epsilon,
max_relative: S::Epsilon
) -> bool
fn relative_ne(
&self,
other: &Rhs,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon
) -> bool
[src]
&self,
other: &Rhs,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon
) -> bool
impl<S: BaseFloat> UlpsEq<Basis3<S>> for Basis3<S>
[src]
fn default_max_ulps() -> u32
[src]
fn ulps_eq(&self, other: &Self, epsilon: S::Epsilon, max_ulps: u32) -> bool
[src]
fn ulps_ne(&self, other: &Rhs, epsilon: Self::Epsilon, max_ulps: u32) -> bool
[src]
impl<S: BaseFloat> One for Basis3<S>
[src]
Auto Trait Implementations
impl<S> Send for Basis3<S> where
S: Send,
S: Send,
impl<S> Unpin for Basis3<S> where
S: Unpin,
S: Unpin,
impl<S> Sync for Basis3<S> where
S: Sync,
S: Sync,
impl<S> UnwindSafe for Basis3<S> where
S: UnwindSafe,
S: UnwindSafe,
impl<S> RefUnwindSafe for Basis3<S> where
S: RefUnwindSafe,
S: RefUnwindSafe,
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,