| PoseDInequality Operator |
Compares two
PoseDs to determine whether they are different.
Namespace: DigitalRune.GeometryAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public static bool operator !=(
PoseD pose1,
PoseD pose2
)
Public Shared Operator <> (
pose1 As PoseD,
pose2 As PoseD
) As Boolean
public:
static bool operator !=(
PoseD pose1,
PoseD pose2
)
static let inline (<>)
pose1 : PoseD *
pose2 : PoseD : bool
Parameters
- pose1
- Type: DigitalRune.GeometryPoseD
The first pose. - pose2
- Type: DigitalRune.GeometryPoseD
The second pose.
Return Value
Type:
Boolean if the poses are different; otherwise
.
Remarks Two poses are equal if their positions and orientations are equal.
See Also