Beispiel #1
0
 public bool Equals([AllowNull] Plane other)
 {
     return(distance.Equals(other.distance) &&
            normal.Equals(other.normal));
 }
Beispiel #2
0
 public bool Equals([AllowNull] Line other)
 {
     return(a.Equals(other.a) &&
            b.Equals(other.b));
 }