Plane::Equality Operator

Returns a value that indicates whether two planes are equal.

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

public:
static bool operator ==(
	Plane value1, 
	Plane value2
)

Parameters

value1
Type: System.Numerics::Plane

The first plane to compare.

value2
Type: System.Numerics::Plane

The second plane to compare.

Return Value

Type: System::Boolean
true if value1 and value2 are equal; otherwise, false.

Two Plane objects are equal if their Normal and D fields are equal.

The Equality method defines the operation of the equality operator for Plane objects.

Show: