コード例 #1
0
 public Vertex Rotate(Vertex xyz)
 {
     return(Rotate(xyz.Y, xyz.X, xyz.Z));
 }
コード例 #2
0
 public bool EqualTo(Vertex other)
 {
     return(X == other.X && Y == other.Y && Z == other.Z);
 }