Exemplo n.º 1
0
 /// <summary>
 /// Equality test
 /// </summary>
 public bool Equals(FaceIjk other)
 {
     return(Face == other.Face && Coord.Equals(other.Coord));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Equality test
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public bool Equals(FaceOrientIjk other)
 {
     return(Face == other.Face &&
            Translate.Equals(other.Translate) &&
            Ccw60Rotations == other.Ccw60Rotations);
 }