Struct comfy_wgpu::epaint::emath::Rot2

#[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ยง

ยง

impl Rot2

pub const IDENTITY: Rot2 = _

The identity rotation: nothing rotates

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.

pub fn angle(self) -> f32

pub fn length(self) -> f32

The factor by which vectors will be scaled.

pub fn length_squared(self) -> f32

pub fn is_finite(self) -> bool

pub fn inverse(self) -> Rot2

pub fn normalized(self) -> Rot2

Trait Implementationsยง

ยง

impl Clone for Rot2

ยง

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
ยง

impl Debug for Rot2

ยง

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

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

impl Default for Rot2

Identity rotation

ยง

fn default() -> Rot2

Identity rotation

ยง

impl Div<f32> for Rot2

Scales the rotor.

ยง

type Output = Rot2

The resulting type after applying the / operator.
ยง

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

Performs the / operation. Read more
ยง

impl Mul<Rot2> for Rot2

ยง

type Output = Rot2

The resulting type after applying the * operator.
ยง

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

Performs the * operation. Read more
ยง

impl Mul<Rot2> for f32

Scales the rotor.

ยง

type Output = Rot2

The resulting type after applying the * operator.
ยง

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

Performs the * operation. Read more
ยง

impl Mul<Vec2> for Rot2

Rotates (and maybe scales) the vector.

ยง

type Output = Vec2

The resulting type after applying the * operator.
ยง

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

Performs the * operation. Read more
ยง

impl Mul<f32> for Rot2

Scales the rotor.

ยง

type Output = Rot2

The resulting type after applying the * operator.
ยง

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

Performs the * operation. Read more
ยง

impl PartialEq<Rot2> for Rot2

ยง

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.
ยง

impl Zeroable for Rot2

ยง

impl Copy for Rot2

ยง

impl Pod for Rot2

ยง

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,

sourceยง

fn borrow(&self) -> &T

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

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

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.
ยง

impl<T> Downcast<T> for T

ยง

fn downcast(&self) -> &T

sourceยง

impl<T> From<T> for T

sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

ยง

impl<S> FromSample<S> for S

ยง

fn from_sample_(s: S) -> S

sourceยง

impl<T, U> Into<U> for Twhere 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.

ยง

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

ยง

fn into_sample(self) -> T

ยง

impl<T> Pointable for T

ยง

const ALIGN: usize = _

The alignment of pointer.
ยง

type Init = T

The type for initializers.
ยง

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

Initializes a with the given initializer. Read more
ยง

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

Dereferences the given pointer. Read more
ยง

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

Mutably dereferences the given pointer. Read more
ยง

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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
ยง

impl<T, U> ToSample<U> for Twhere U: FromSample<T>,

ยง

fn to_sample_(self) -> U

sourceยง

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.
ยง

impl<T> Upcast<T> for T

ยง

fn upcast(&self) -> Option<&T>

ยง

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

ยง

fn vzip(self) -> V

ยง

impl<T> Any for Twhere T: Any,

sourceยง

impl<T> AnyBitPattern for Twhere T: Pod,

ยง

impl<T> CloneAny for Twhere T: Any + Clone,

ยง

impl<T> Component for Twhere T: Send + Sync + 'static,

ยง

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

sourceยง

impl<T> NoUninit for Twhere T: Pod,

sourceยง

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