[wpimath] Correct Rotation3d::RotateBy doc comment (NFC) (#5541)

Improve transform doc comment consistency
This commit is contained in:
Joseph Eng
2023-08-15 13:12:09 -07:00
committed by GitHub
parent 186b409e16
commit 7a37e3a496
5 changed files with 18 additions and 14 deletions

View File

@@ -99,7 +99,8 @@ class WPILIB_DLLEXPORT Transform3d {
Transform3d operator/(double scalar) const { return *this * (1.0 / scalar); }
/**
* Composes two transformations.
* Composes two transformations. The second transform is applied relative to
* the orientation of the first.
*
* @param other The transform to compose with this one.
* @return The composition of the two transformations.