You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static boolean epsilonEquals(RigidBodyTransformReadOnly a, RigidBodyTransformReadOnly b, double rotationEpsilon, double translationEpsilon)
{
return a.getRotation().geometricallyEquals(b.getRotation(), rotationEpsilon)
&& a.getTranslation().geometricallyEquals(b.getTranslation(), translationEpsilon);
}
The text was updated successfully, but these errors were encountered:
calvertdw
changed the title
Pose3DReadOnly#epsilonEquals should accept separate epsilons for position and orientationRigidBodyTransformReadOnly#epsilonEquals should accept separate epsilons for position and orientation
May 31, 2024
calvertdw
changed the title
RigidBodyTransformReadOnly#epsilonEquals should accept separate epsilons for position and orientationRigidBodyTransformReadOnly#epsilonEquals should accept separate epsilons for rotation and translation
May 31, 2024
I made this in EuclidCoreMissingTools for now.
The text was updated successfully, but these errors were encountered: