[][src]Struct ultraviolet::transform::Isometry2

#[repr(C)]
pub struct Isometry2 {
    pub translation: Vec2,
    pub rotation: Rotor2,
}

An Isometry, also known as a "rigid body transformation", i.e. a rotation followed by a translation.

You may want to us this type over the corresponding type of homogeneous transformation matrix because it will be faster in most operations, especially composition and inverse.

Fields

translation: Vec2rotation: Rotor2

Methods

impl Isometry2[src]

pub fn new(translation: Vec2, rotation: Rotor2) -> Self[src]

pub fn identity() -> Self[src]

pub fn prepend_rotation(&mut self, rotor: Rotor2)[src]

Add a rotation before this isometry.

This means the rotation will only affect the rotational part of this isometry, not the translational part.

pub fn append_rotation(&mut self, rotor: Rotor2)[src]

Add a rotation after this isometry.

This means the rotation will affect both the rotational and translational parts of this isometry, since it is being applied 'after' this isometry's translational part.

pub fn prepend_translation(&mut self, translation: Vec2)[src]

Add a translation before this isometry.

Doing so will mean that the translation being added will get transformed by this isometry's rotational part.

pub fn append_translation(&mut self, translation: Vec2)[src]

Add a translation after this isometry.

Doing so will mean that the translation being added will not transformed by this isometry's rotational part.

pub fn prepend_isometry(&mut self, other: Self)[src]

Prepend transformation by another isometry.

This means that the transformation being applied will take place before this isometry, i.e. both its translation and rotation will be rotated by this isometry's rotational part.

pub fn append_isometry(&mut self, other: Self)[src]

Append transformation by another isometry.

This means that the transformation being applied will take place after this isometry, i.e. this isometry's translation and rotation will be rotated by the other isometry's rotational part.

pub fn inverse(&mut self)[src]

pub fn inversed(self) -> Self[src]

pub fn transform_vec(&self, vec: Vec2) -> Vec2[src]

pub fn into_homogeneous_matrix(self) -> Mat3[src]

Trait Implementations

impl Clone for Isometry2[src]

impl Copy for Isometry2[src]

impl Default for Isometry2[src]

impl Debug for Isometry2[src]

impl Mul<Isometry2> for Rotor2[src]

type Output = Isometry2

The resulting type after applying the * operator.

impl Mul<Rotor2> for Isometry2[src]

type Output = Isometry2

The resulting type after applying the * operator.

impl Mul<Vec2> for Isometry2[src]

type Output = Vec2

The resulting type after applying the * operator.

impl Mul<Isometry2> for Isometry2[src]

type Output = Self

The resulting type after applying the * operator.

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]