#[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
sourceimpl Rot2
impl Rot2
sourcepub fn from_angle(angle: f32) -> Rot2
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_squared(self) -> f32
pub fn is_finite(self) -> bool
pub fn inverse(self) -> Rot2
pub fn normalized(self) -> Rot2
Trait Implementations
impl Copy for Rot2
impl StructuralPartialEq for Rot2
Auto Trait Implementations
impl RefUnwindSafe for Rot2
impl Send for Rot2
impl Sync for Rot2
impl Unpin for Rot2
impl UnwindSafe for Rot2
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more