コード例 #1
0
ファイル: MeshFace.cs プロジェクト: Daloupe/MeshReconstructor
 // IEquatable
 public virtual bool Equals(MeshFace other)
 {
     return(Vertices.ContainsAllFrom(other.Vertices) && other.Vertices.ContainsAllFrom(Vertices));
 }