From d1edb4fd7bd00671ae8690f7bbae16feb1b69d2d Mon Sep 17 00:00:00 2001 From: Junfeng Liu Date: Tue, 18 Jun 2024 16:38:09 +0800 Subject: [PATCH] Fix document of Rotation's transpose and inverse methods --- src/geometry/rotation.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/geometry/rotation.rs b/src/geometry/rotation.rs index 01bca1d8..4e90ff7a 100644 --- a/src/geometry/rotation.rs +++ b/src/geometry/rotation.rs @@ -281,7 +281,7 @@ impl Rotation { impl Rotation { /// Transposes `self`. /// - /// Same as `.inverse()` because the inverse of a rotation matrix is its transform. + /// Same as `.inverse()` because the inverse of a rotation matrix is its transpose. /// /// # Example /// ``` @@ -305,7 +305,7 @@ impl Rotation { /// Inverts `self`. /// - /// Same as `.transpose()` because the inverse of a rotation matrix is its transform. + /// Same as `.transpose()` because the inverse of a rotation matrix is its transpose. /// /// # Example /// ``` @@ -329,7 +329,7 @@ impl Rotation { /// Transposes `self` in-place. /// - /// Same as `.inverse_mut()` because the inverse of a rotation matrix is its transform. + /// Same as `.inverse_mut()` because the inverse of a rotation matrix is its transpose. /// /// # Example /// ``` @@ -356,7 +356,7 @@ impl Rotation { /// Inverts `self` in-place. /// - /// Same as `.transpose_mut()` because the inverse of a rotation matrix is its transform. + /// Same as `.transpose_mut()` because the inverse of a rotation matrix is its transpose. /// /// # Example /// ```