Plane.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.
Returns a value that indicates whether this instance and a specified Plane instance or a specified object are equal.
Overloads
Equals(Object) |
Returns a value that indicates whether this instance and a specified object are equal. |
Equals(Plane) |
Returns a value that indicates whether this instance and another plane object are equal. |
Equals(Object)
- Source:
- Plane.cs
- Source:
- Plane.cs
- Source:
- Plane.cs
Returns a value that indicates whether this instance and a specified object are equal.
public:
override bool Equals(System::Object ^ obj);
public override bool Equals (object obj);
public override readonly bool Equals (object? obj);
public override readonly bool Equals (object obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean
Parameters
- obj
- Object
The object to compare with the current instance.
Returns
true
if the current instance and obj
are equal; otherwise, false
. If obj
is null
, the method returns false
.
Remarks
The current instance and obj
are equal if obj
is a Plane object and their Normal and D fields are equal.
Applies to
Equals(Plane)
- Source:
- Plane.cs
- Source:
- Plane.cs
- Source:
- Plane.cs
Returns a value that indicates whether this instance and another plane object are equal.
public:
virtual bool Equals(System::Numerics::Plane other);
public bool Equals (System.Numerics.Plane other);
public readonly bool Equals (System.Numerics.Plane other);
override this.Equals : System.Numerics.Plane -> bool
Public Function Equals (other As Plane) As Boolean
Parameters
- other
- Plane
The other plane.
Returns
true
if the two planes are equal; otherwise, false
.
Implements
Remarks
Two Plane objects are equal if their Normal and D fields are equal.