pub trait IsometricTransform90: IsometricTransform + SimilarityTransform90 {
    fn rotation(&self) -> Angle;
}
Expand description

Geometric transformation which preserves angles and distances (e.g. euclidean transform) but allows only rotations by a multiple of 90 degrees.

Required Methods

Return the rotation by a multiple of 90 degrees.

Implementors