示例#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));
 }