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