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.
Overloads
Equals(Object) |
Tests for equality between two matrices. |
Equals(Matrix3D) |
Tests for equality between two matrices. |
Remarks
This struct represents the .NET projection of the Windows Runtime (WinRT) Matrix3D
struct. For more information, see Matrix3D in the UWP API reference.
Equals(Object)
Tests for 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
The object to test for equality with the current instance.
Returns
true
if the matrices are equal; otherwise, false
.
Applies to
Equals(Matrix3D)
Tests for equality between two matrices.
public:
bool Equals(Windows::UI::Xaml::Media::Media3D::Matrix3D value);
public bool Equals (Windows.UI.Xaml.Media.Media3D.Matrix3D value);
override this.Equals : Windows.UI.Xaml.Media.Media3D.Matrix3D -> bool
Public Function Equals (value As Matrix3D) As Boolean
Parameters
Returns
true
if the matrices are equal; otherwise, false
.