예제 #1
0
파일: Vector3.cs 프로젝트: rjabaker/Skynet
 public Vector3(Vertex3 startVertex, Vertex3 endVertex)
 {
     this.line = new Vertex3[] { new Vertex3(0, 0, 0), endVertex - startVertex };
 }
예제 #2
0
파일: Vector3.cs 프로젝트: rjabaker/Skynet
 public Vector3(Vertex3 point)
 {
     this.line = new Vertex3[] { new Vertex3(0, 0, 0), point };
 }