Plane::Equals Method (Object)

Returns a value that indicates whether this instance and a specified object are equal.

Namespace:  System.Numerics
Assembly:  System.Numerics.Vectors (in System.Numerics.Vectors.dll)

public:
virtual bool Equals(
	Object^ obj
) override

Parameters

obj
Type: System::Object

The object to compare with the current instance.

Return Value

Type: System::Boolean
true if the current instance and obj are equal; otherwise, false. If obj is nullptr, the method returns false.

The current instance and obj are equal if obj is a Plane object and their Normal and D fields are equal.

Show: