Struct TypedRotation2D

Source
#[repr(C)]
pub struct TypedRotation2D<T, Src, Dst> { pub angle: T, /* private fields */ }
Expand description

A transform that can represent rotations in 2d, represented as an angle in radians.

Fields§

§angle: T

Implementations§

Source§

impl<T, Src, Dst> TypedRotation2D<T, Src, Dst>

Source

pub fn new(angle: Angle<T>) -> Self

Creates a rotation from an angle in radians.

Source

pub fn radians(angle: T) -> Self

Source

pub fn identity() -> Self
where T: Zero,

Creates the identity rotation.

Source§

impl<T, Src, Dst> TypedRotation2D<T, Src, Dst>
where T: Clone,

Source

pub fn get_angle(&self) -> Angle<T>

Returns self.angle as a strongly typed Angle<T>.

Source§

impl<T, Src, Dst> TypedRotation2D<T, Src, Dst>
where T: Copy + Clone + Add<T, Output = T> + Sub<T, Output = T> + Mul<T, Output = T> + Div<T, Output = T> + Neg<Output = T> + PartialOrd + Float + One + Zero,

Source

pub fn to_3d(&self) -> TypedRotation3D<T, Src, Dst>

Creates a 3d rotation (around the z axis) from this 2d rotation.

Source

pub fn inverse(&self) -> TypedRotation2D<T, Dst, Src>

Returns the inverse of this rotation.

Source

pub fn pre_rotate<NewSrc>( &self, other: &TypedRotation2D<T, NewSrc, Src>, ) -> TypedRotation2D<T, NewSrc, Dst>

Returns a rotation representing the other rotation followed by this rotation.

Source

pub fn post_rotate<NewDst>( &self, other: &TypedRotation2D<T, Dst, NewDst>, ) -> TypedRotation2D<T, Src, NewDst>

Returns a rotation representing this rotation followed by the other rotation.

Source

pub fn transform_point( &self, point: &TypedPoint2D<T, Src>, ) -> TypedPoint2D<T, Dst>

Returns the given 2d point transformed by this rotation.

The input point must be use the unit Src, and the returned point has the unit Dst.

Source

pub fn transform_vector( &self, vector: &TypedVector2D<T, Src>, ) -> TypedVector2D<T, Dst>

Returns the given 2d vector transformed by this rotation.

The input point must be use the unit Src, and the returned point has the unit Dst.

Source§

impl<T, Src, Dst> TypedRotation2D<T, Src, Dst>
where T: Copy + Clone + Add<T, Output = T> + Mul<T, Output = T> + Div<T, Output = T> + Sub<T, Output = T> + Trig + PartialOrd + One + Zero,

Source

pub fn to_transform(&self) -> TypedTransform2D<T, Src, Dst>

Returns the matrix representation of this rotation.

Trait Implementations§

Source§

impl<T, Src, Dst> Clone for TypedRotation2D<T, Src, Dst>
where T: Clone,

Source§

fn clone(&self) -> Self

Returns a duplicate 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<'de, T, Src, Dst> Deserialize<'de> for TypedRotation2D<T, Src, Dst>
where T: Deserialize<'de>,

Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<T, Src, Dst> Hash for TypedRotation2D<T, Src, Dst>
where T: Hash,

Source§

fn hash<H: Hasher>(&self, h: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T, Src, Dst> PartialEq for TypedRotation2D<T, Src, Dst>
where T: PartialEq,

Source§

fn eq(&self, other: &Self) -> 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<T, Src, Dst> Serialize for TypedRotation2D<T, Src, Dst>
where T: Serialize,

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<T, Src, Dst> Copy for TypedRotation2D<T, Src, Dst>
where T: Copy,

Source§

impl<T, Src, Dst> Eq for TypedRotation2D<T, Src, Dst>
where T: Eq,

Auto Trait Implementations§

§

impl<T, Src, Dst> Freeze for TypedRotation2D<T, Src, Dst>
where T: Freeze,

§

impl<T, Src, Dst> RefUnwindSafe for TypedRotation2D<T, Src, Dst>

§

impl<T, Src, Dst> Send for TypedRotation2D<T, Src, Dst>
where T: Send, Src: Send, Dst: Send,

§

impl<T, Src, Dst> Sync for TypedRotation2D<T, Src, Dst>
where T: Sync, Src: Sync, Dst: Sync,

§

impl<T, Src, Dst> Unpin for TypedRotation2D<T, Src, Dst>
where T: Unpin, Src: Unpin, Dst: Unpin,

§

impl<T, Src, Dst> UnwindSafe for TypedRotation2D<T, Src, Dst>
where T: UnwindSafe, Src: UnwindSafe, Dst: 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> 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> 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> 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> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,