예제 #1
0
 public readonly bool Equals(Plane <T> other)
 {
     return(Normal.Equals(other.Normal) && Scalar.Equal(Distance, other.Distance));
 }
예제 #2
0
 public static bool operator ==(Plane <T> value1, Plane <T> value2)
 => value1.Normal == value2.Normal && Scalar.Equal(value1.Distance, value2.Distance);