Example #1
0
 // IEquatable
 public virtual bool Equals(MeshFace other)
 {
     return(Vertices.ContainsAllFrom(other.Vertices) && other.Vertices.ContainsAllFrom(Vertices));
 }