[wpimath] Fix Pose relativeTo documentation (#4661)

This commit is contained in:
amquake
2022-11-18 14:07:50 -08:00
committed by GitHub
parent 8acce443f0
commit 88f7a3ccb9
4 changed files with 4 additions and 4 deletions

View File

@@ -141,7 +141,7 @@ class WPILIB_DLLEXPORT Pose2d {
constexpr Pose2d TransformBy(const Transform2d& other) const;
/**
* Returns the other pose relative to the current pose.
* Returns the current pose relative to the given pose.
*
* This function can often be used for trajectory tracking or pose
* stabilization algorithms to get the error between the reference and the

View File

@@ -152,7 +152,7 @@ class WPILIB_DLLEXPORT Pose3d {
Pose3d TransformBy(const Transform3d& other) const;
/**
* Returns the other pose relative to the current pose.
* Returns the current pose relative to the given pose.
*
* This function can often be used for trajectory tracking or pose
* stabilization algorithms to get the error between the reference and the