Struct emath::Rot2

source ·
#[repr(C)]
pub struct Rot2 { /* private fields */ }
Expand description

Represents a rotation in the 2D plane.

A rotation of 𝞃/4 = 90° rotates the X axis to the Y axis.

Normally a Rot2 is normalized (unit-length). If not, it will also scale vectors.

Implementations§

source§

impl Rot2

source

pub const IDENTITY: Self = _

The identity rotation: nothing rotates

source

pub fn from_angle(angle: f32) -> Self

Angle is clockwise in radians. A 𝞃/4 = 90° rotation means rotating the X axis to the Y axis.

source

pub fn angle(self) -> f32

source

pub fn length(self) -> f32

The factor by which vectors will be scaled.

source

pub fn length_squared(self) -> f32

source

pub fn is_finite(self) -> bool

source

pub fn inverse(self) -> Self

source

pub fn normalized(self) -> Self

Trait Implementations§

source§

impl Clone for Rot2

source§

fn clone(&self) -> Rot2

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 Debug for Rot2

source§

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

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

impl Default for Rot2

Identity rotation

source§

fn default() -> Self

Identity rotation

source§

impl Div<f32> for Rot2

Scales the rotor.

§

type Output = Rot2

The resulting type after applying the / operator.
source§

fn div(self, r: f32) -> Self

Performs the / operation. Read more
source§

impl Mul<Rot2> for f32

Scales the rotor.

§

type Output = Rot2

The resulting type after applying the * operator.
source§

fn mul(self, r: Rot2) -> Rot2

Performs the * operation. Read more
source§

impl Mul<Vec2> for Rot2

Rotates (and maybe scales) the vector.

§

type Output = Vec2

The resulting type after applying the * operator.
source§

fn mul(self, v: Vec2) -> Vec2

Performs the * operation. Read more
source§

impl Mul<f32> for Rot2

Scales the rotor.

§

type Output = Rot2

The resulting type after applying the * operator.
source§

fn mul(self, r: f32) -> Self

Performs the * operation. Read more
source§

impl Mul for Rot2

§

type Output = Rot2

The resulting type after applying the * operator.
source§

fn mul(self, r: Self) -> Self

Performs the * operation. Read more
source§

impl PartialEq for Rot2

source§

fn eq(&self, other: &Rot2) -> 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 Zeroable for Rot2

source§

fn zeroed() -> Self

source§

impl Copy for Rot2

source§

impl Pod for Rot2

source§

impl StructuralPartialEq for Rot2

Auto Trait Implementations§

§

impl Freeze for Rot2

§

impl RefUnwindSafe for Rot2

§

impl Send for Rot2

§

impl Sync for Rot2

§

impl Unpin for Rot2

§

impl UnwindSafe for Rot2

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> CheckedBitPattern for T
where T: AnyBitPattern,

§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
source§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
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,

§

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

§

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

§

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> AnyBitPattern for T
where T: Pod,

source§

impl<T> NoUninit for T
where T: Pod,