Struct 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: Rot2

The identity rotation: nothing rotates

Source

pub fn from_angle(angle: f32) -> Rot2

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

Trait Implementationsยง

Sourceยง

impl Clone for Rot2

Sourceยง

fn clone(&self) -> Rot2

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

Sourceยง

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

Formats the value using the given formatter. Read more
Sourceยง

impl Default for Rot2

Identity rotation

Sourceยง

fn default() -> Rot2

Identity rotation

Sourceยง

impl Div<f32> for Rot2

Scales the rotor.

Sourceยง

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

Rotates (and maybe scales) the vector.

Sourceยง

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.

Sourceยง

type Output = Rot2

The resulting type after applying the * operator.
Sourceยง

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

Performs the * operation. Read more
Sourceยง

impl Mul for Rot2

Sourceยง

type Output = Rot2

The resulting type after applying the * operator.
Sourceยง

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

Performs the * operation. Read more
Sourceยง

impl PartialEq for Rot2

Sourceยง

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

Sourceยง

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> 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> Content for T
where T: Copy,

Sourceยง

type Owned = T

A type that holds a sized version of the content.
Sourceยง

unsafe fn read<F, E>(size: usize, f: F) -> Result<T, E>
where F: FnOnce(&mut T) -> Result<(), E>,

Prepares an output buffer, then turns this buffer into an Owned. User-provided closure F must only write to and not read from &mut Self.
Sourceยง

fn get_elements_size() -> usize

Returns the size of each element.
Sourceยง

fn to_void_ptr(&self) -> *const ()

Produces a pointer to the data.
Sourceยง

fn ref_from_ptr<'a>(ptr: *mut (), size: usize) -> Option<*mut T>

Builds a pointer to this type from a raw pointer.
Sourceยง

fn is_size_suitable(size: usize) -> bool

Returns true if the size is suitable to store a type like this.
Sourceยง

impl<T> From<T> for T

Sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

Sourceยง

impl<S> FromSample<S> for S

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> IntoEither for T

Sourceยง

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Sourceยง

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Sourceยง

impl<F, T> IntoSample<T> for F
where T: FromSample<F>,

Sourceยง

impl<T> Pointable for T

Sourceยง

const ALIGN: usize

The alignment of pointer.
Sourceยง

type Init = T

The type for initializers.
Sourceยง

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Sourceยง

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Sourceยง

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Sourceยง

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Sourceยง

impl<R, P> ReadPrimitive<R> for P
where R: Read + ReadEndian<P>, P: Default,

Sourceยง

fn read_from_little_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian().
Sourceยง

fn read_from_big_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian().
Sourceยง

fn read_from_native_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian().
Sourceยง

impl<T> Same for T

Sourceยง

type Output = T

Should always be Self
Sourceยง

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Sourceยง

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Sourceยง

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Sourceยง

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Sourceยง

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
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> ToSample<U> for T
where U: FromSample<T>,

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

Sourceยง

impl<S, T> Duplex<S> for T
where T: FromSample<S> + ToSample<S>,

Sourceยง

impl<T> ErasedDestructor for T
where T: 'static,

Sourceยง

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

Sourceยง

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,

Sourceยง

impl<T> SerializableAny for T
where T: 'static + Any + Clone + for<'a> Send + Sync,