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) -> Rot2

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<'de> Deserialize<'de> for Rot2

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 Div<f32> for Rot2

Scales the rotor.

ยง

type Output = Rot2

The resulting type after applying the / operator.
sourceยง

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

Performs the / operation. Read more
sourceยง

impl Mul<Rot2> for Rot2

ยง

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<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) -> Rot2

Performs the * operation. Read more
sourceยง

impl PartialEq<Rot2> 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 Serialize for Rot2

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

sourceยง

impl Copy for Rot2

sourceยง

impl Pod for Rot2

sourceยง

impl StructuralPartialEq for Rot2

Auto Trait Implementationsยง

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,

const: unstable ยท sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
sourceยง

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

const: unstable ยท sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
sourceยง

impl<T> CheckedBitPattern for Twhere
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

const: unstable ยท sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

sourceยง

impl<T, U> Into<U> for Twhere
U: From<T>,

const: unstable ยท 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.
const: unstable ยท 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.
const: unstable ยท sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
sourceยง

impl<T> AnyBitPattern for Twhere
T: Pod,

sourceยง

impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,

sourceยง

impl<T> NoUninit for Twhere
T: Pod,