Ejemplo n.º 1
0
 public Vertex Rotate(Vertex xyz)
 {
     return(Rotate(xyz.Y, xyz.X, xyz.Z));
 }
Ejemplo n.º 2
0
 public bool EqualTo(Vertex other)
 {
     return(X == other.X && Y == other.Y && Z == other.Z);
 }