Matrix3D.Equals Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Tests equality between two matrices.
Overloads
Equals(Object) |
Tests equality between two matrices. |
Equals(Matrix3D) |
Tests equality between two matrices. |
Equals(Matrix3D, Matrix3D) |
Tests equality between two matrices. |
Equals(Object)
Tests equality between two matrices.
public:
override bool Equals(System::Object ^ o);
public override bool Equals (object o);
override this.Equals : obj -> bool
Public Overrides Function Equals (o As Object) As Boolean
Parameters
- o
- Object
Object to test for equality.
Returns
Boolean that indicates whether the matrices are equal.
Applies to
Equals(Matrix3D)
Tests equality between two matrices.
public:
bool Equals(System::Windows::Media::Media3D::Matrix3D value);
public bool Equals (System.Windows.Media.Media3D.Matrix3D value);
override this.Equals : System.Windows.Media.Media3D.Matrix3D -> bool
Public Function Equals (value As Matrix3D) As Boolean
Parameters
- value
- Matrix3D
The Matrix3D to which to compare.
Returns
Boolean that indicates whether the matrices are equal.
Applies to
Equals(Matrix3D, Matrix3D)
Tests equality between two matrices.
public:
static bool Equals(System::Windows::Media::Media3D::Matrix3D matrix1, System::Windows::Media::Media3D::Matrix3D matrix2);
public static bool Equals (System.Windows.Media.Media3D.Matrix3D matrix1, System.Windows.Media.Media3D.Matrix3D matrix2);
static member Equals : System.Windows.Media.Media3D.Matrix3D * System.Windows.Media.Media3D.Matrix3D -> bool
Public Shared Function Equals (matrix1 As Matrix3D, matrix2 As Matrix3D) As Boolean
Parameters
- matrix1
- Matrix3D
The first Matrix3D to compare.
- matrix2
- Matrix3D
The second Matrix3D to compare.
Returns
Boolean that indicates whether the matrices are equal.
Applies to
.NET