コード例 #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));
 }