public Position(Model.Vertex locationIn, Direction orientationIn) { Location = locationIn; Orientation = orientationIn; }
public Vertex(Vertex vertex) { X = vertex.X; Y = vertex.Y; Z = vertex.Z; }
public Position() { Location = new Model.Vertex(); Orientation = new Direction(); }
public Vertex Move(Vertex origin) { return(new Vertex(X - origin.X, Y - origin.Y, Z - origin.Z)); }