#[repr(C)]
pub struct DIsometry2x4 { pub translation: DVec2x4, pub rotation: DRotor2x4, }
Expand description

An Isometry, aka a “rigid body transformation”.

Defined as the combination of a rotation and then 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: DVec2x4§rotation: DRotor2x4

Implementations§

source§

impl DIsometry2x4

source

pub const fn new(translation: DVec2x4, rotation: DRotor2x4) -> Self

source

pub fn identity() -> Self

source

pub fn prepend_rotation(&mut self, rotor: DRotor2x4)

Add a rotation before this isometry.

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

source

pub fn append_rotation(&mut self, rotor: DRotor2x4)

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.

source

pub fn prepend_translation(&mut self, translation: DVec2x4)

Add a translation before this isometry.

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

source

pub fn append_translation(&mut self, translation: DVec2x4)

Add a translation after this isometry.

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

source

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

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.

source

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

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.

source

pub fn inverse(&mut self)

source

pub fn inversed(self) -> Self

source

pub fn transform_vec(&self, vec: DVec2x4) -> DVec2x4

source

pub fn into_homogeneous_matrix(self) -> DMat3x4

Trait Implementations§

source§

impl Add<DIsometry2x4> for DIsometry2x4

§

type Output = DIsometry2x4

The resulting type after applying the + operator.
source§

fn add(self, other: DIsometry2x4) -> DIsometry2x4

Performs the + operation. Read more
source§

impl Clone for DIsometry2x4

source§

fn clone(&self) -> DIsometry2x4

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 DIsometry2x4

source§

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

Formats the value using the given formatter. Read more
source§

impl Default for DIsometry2x4

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Mul<DIsometry2x4> for DIsometry2x4

§

type Output = DIsometry2x4

The resulting type after applying the * operator.
source§

fn mul(self, base: DIsometry2x4) -> DIsometry2x4

Performs the * operation. Read more
source§

impl Mul<DIsometry2x4> for DRotor2x4

§

type Output = DIsometry2x4

The resulting type after applying the * operator.
source§

fn mul(self, iso: DIsometry2x4) -> DIsometry2x4

Performs the * operation. Read more
source§

impl Mul<DRotor2x4> for DIsometry2x4

§

type Output = DIsometry2x4

The resulting type after applying the * operator.
source§

fn mul(self, rotor: DRotor2x4) -> DIsometry2x4

Performs the * operation. Read more
source§

impl Mul<DVec2x4> for DIsometry2x4

§

type Output = DVec2x4

The resulting type after applying the * operator.
source§

fn mul(self, vec: DVec2x4) -> DVec2x4

Performs the * operation. Read more
source§

impl Mul<f64x4> for DIsometry2x4

§

type Output = DIsometry2x4

The resulting type after applying the * operator.
source§

fn mul(self, scalar: f64x4) -> DIsometry2x4

Performs the * operation. Read more
source§

impl PartialEq<DIsometry2x4> for DIsometry2x4

source§

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

source§

impl StructuralPartialEq for DIsometry2x4

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

source§

fn from(t: T) -> T

Returns the argument unchanged.

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.

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