|  | PoseEquality Operator | 
            Compares two 
Poses to determine whether they are the same.
            
 
Namespace: DigitalRune.GeometryAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
 Syntax
Syntaxpublic static bool operator ==(
	Pose pose1,
	Pose pose2
)
Public Shared Operator = ( 
	pose1 As Pose,
	pose2 As Pose
) As Boolean
public:
static bool operator ==(
	Pose pose1, 
	Pose pose2
)
static let inline (=)
        pose1 : Pose * 
        pose2 : Pose  : boolParameters
- pose1
- Type: DigitalRune.GeometryPose
 The first pose.
- pose2
- Type: DigitalRune.GeometryPose
 The second pose.
Return Value
Type: 
Boolean if the poses are equal; otherwise 
.
            
 Remarks
RemarksTwo poses are equal if their positions and orientations are equal.
 See Also
See Also