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

A Similarity, i.e. an Isometry but with an added uniform scaling.

Defined as a uniform scaling followed by 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: DVec2x4§rotation: DRotor2x4§scale: f64x4

Implementations§

source§

impl DSimilarity2x4

source

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

source

pub fn identity() -> Self

source

pub fn prepend_scaling(&mut self, scaling: f64x4)

Add a scaling before this similarity.

This means the scaling will only affect the scaling part of this similarity, not the translational part.

source

pub fn append_scaling(&mut self, scaling: f64x4)

Add a scaling after this similarity.

This means the scaling will affect both the scaling and translational parts of this similairty, since it is being applied after this similarity’s translational part.

source

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

Add a rotation before this similarity.

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

source

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

Add a rotation after this similarity.

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

source

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

Add a translation before this similarity.

Doing so will mean that the translation being added will get transformed by this similarity’s rotational and scaling parts.

source

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

Add a translation after this similarity.

Doing so will mean that the translation being added will not transformed by this similarity’s rotational or scaling parts.

source

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

Prepend transformation by another similarity.

This means that the transformation being applied will take place before this similarity, i.e. both its translation and rotation will be rotated by the other similarity’s rotational part, and its translation will be scaled by the other similarity’s scaling part.

source

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

Append transformation by another similarity.

This means that the transformation being applied will take place after this similarity, i.e. this similarity’s translation and rotation will be rotated by the other similarity’s rotational part, and this similarity’s translation will be scaled by the other similarity’s scaling pat.

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<DSimilarity2x4> for DSimilarity2x4

§

type Output = DSimilarity2x4

The resulting type after applying the + operator.
source§

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

Performs the + operation. Read more
source§

impl Clone for DSimilarity2x4

source§

fn clone(&self) -> DSimilarity2x4

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 DSimilarity2x4

source§

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

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

impl Default for DSimilarity2x4

source§

fn default() -> Self

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

impl Mul<DRotor2x4> for DSimilarity2x4

§

type Output = DSimilarity2x4

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<DSimilarity2x4> for DRotor2x4

§

type Output = DSimilarity2x4

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<DSimilarity2x4> for DSimilarity2x4

§

type Output = DSimilarity2x4

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl Mul<DVec2x4> for DSimilarity2x4

§

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 DSimilarity2x4

§

type Output = DSimilarity2x4

The resulting type after applying the * operator.
source§

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

Performs the * operation. Read more
source§

impl PartialEq<DSimilarity2x4> for DSimilarity2x4

source§

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

source§

impl StructuralPartialEq for DSimilarity2x4

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.