Plane.Equality(Plane, Plane) 操作员

定义

返回一个值,该值指示两个平面是否相等。

public:
 static bool operator ==(System::Numerics::Plane value1, System::Numerics::Plane value2);
public static bool operator ==(System.Numerics.Plane value1, System.Numerics.Plane value2);
static member ( = ) : System.Numerics.Plane * System.Numerics.Plane -> bool
Public Shared Operator == (value1 As Plane, value2 As Plane) As Boolean

参数

value1
Plane

要比较的第一个平面。

value2
Plane

要比较的第二个平面。

返回

true 如果 value1value2 相等,则为 ;否则为 false

注解

如果两个对象和字段相等,则两 PlaneNormalD 个对象相等。

该方法 Equality 定义对象的相等运算符 Plane 的操作。

适用于