public Vertex Rotate(Vertex xyz)
 {
     return(Rotate(xyz.Y, xyz.X, xyz.Z));
 }
 public bool EqualTo(Vertex other)
 {
     return(X == other.X && Y == other.Y && Z == other.Z);
 }