Struct euler::DTrs[][src]

pub struct DTrs {
    pub t: DVec3,
    pub r: DQuat,
    pub s: DVec3,
}

Double-precision translation + rotation + non-uniform scale transform.

Fields

Translation vector.

Rotation quaternion.

Non-uniform scale factor.

Methods

impl DTrs
[src]

Full constructor.

Identity constructor.

Returns the equivalent matrix representation for this transform.

Trait Implementations

impl Clone for DTrs
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for DTrs
[src]

impl Debug for DTrs
[src]

Formats the value using the given formatter. Read more

impl PartialEq for DTrs
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for DTrs
[src]

Formats the value using the given formatter. Read more

impl Default for DTrs
[src]

Returns the "default value" for a type. Read more

impl ApproxEq for DTrs
[src]

Used for specifying relative comparisons.

The default tolerance to use when testing values that are close together. Read more

The default relative tolerance for testing values that are far-apart. Read more

The default ULPs to tolerate when testing values that are far-apart. Read more

A test for equality that uses a relative comparison if the values are far apart.

A test for equality that uses units in the last place (ULP) if the values are far apart.

The inverse of ApproxEq::relative_eq.

The inverse of ApproxEq::ulps_eq.

Auto Trait Implementations

impl Send for DTrs

impl Sync for DTrs