pub type SimilarityMatrix2<T> = Similarity<T, Rotation2<T>, 2>;
Expand description

A 2-dimensional similarity using a rotation matrix for its rotation part.

Aliased Type§

struct SimilarityMatrix2<T> {
    pub isometry: Isometry<T, Rotation<T, 2>, 2>,
    /* private fields */
}

Fields§

§isometry: Isometry<T, Rotation<T, 2>, 2>

The part of this similarity that does not include the scaling factor.