| PoseAreNumericallyEqual Method (Pose, Pose) |
Determines whether two poses are equal (regarding the tolerance
EpsilonF).
Namespace: DigitalRune.GeometryAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public static bool AreNumericallyEqual(
Pose pose1,
Pose pose2
)
Public Shared Function AreNumericallyEqual (
pose1 As Pose,
pose2 As Pose
) As Boolean
public:
static bool AreNumericallyEqual(
Pose pose1,
Pose pose2
)
static member AreNumericallyEqual :
pose1 : Pose *
pose2 : Pose -> bool
Parameters
- pose1
- Type: DigitalRune.GeometryPose
The first pose. - pose2
- Type: DigitalRune.GeometryPose
The second pose.
Return Value
Type:
Boolean if the poses are equal (within the tolerance
EpsilonF); otherwise,
.
Remarks
The two vectors are compared component-wise. If the differences of the components are less
than
EpsilonF the vectors are considered as being equal.
See Also