コード例 #1
0
 public Position(Model.Vertex locationIn, Direction orientationIn)
 {
     Location    = locationIn;
     Orientation = orientationIn;
 }
コード例 #2
0
ファイル: Vertex.cs プロジェクト: solovevserg/WireframeRender
 public Vertex(Vertex vertex)
 {
     X = vertex.X;
     Y = vertex.Y;
     Z = vertex.Z;
 }
コード例 #3
0
 public Position()
 {
     Location    = new Model.Vertex();
     Orientation = new Direction();
 }
コード例 #4
0
ファイル: Vertex.cs プロジェクト: solovevserg/WireframeRender
 public Vertex Move(Vertex origin)
 {
     return(new Vertex(X - origin.X, Y - origin.Y, Z - origin.Z));
 }