예제 #1
0
 public Edge3D(Vertex3D start, Vertex3D end)
 {
     Start = start;
     End   = end;
     ConnectedTriangles = new LinkedList <Triangle3D>();
 }