예제 #1
0
파일: Plane.cs 프로젝트: luxgile/Entygine
 public bool Equals([AllowNull] Plane other)
 {
     return(distance.Equals(other.distance) &&
            normal.Equals(other.normal));
 }
예제 #2
0
파일: Line.cs 프로젝트: luxgile/Entygine
 public bool Equals([AllowNull] Line other)
 {
     return(a.Equals(other.a) &&
            b.Equals(other.b));
 }