Example #1
0
 public Vector3(Vertex3 startVertex, Vertex3 endVertex)
 {
     this.line = new Vertex3[] { new Vertex3(0, 0, 0), endVertex - startVertex };
 }
Example #2
0
 public Vector3(Vertex3 point)
 {
     this.line = new Vertex3[] { new Vertex3(0, 0, 0), point };
 }