示例#1
0
 public HalfEdge(Vertex vertex, Triangle triangle)
 {
     this.vertex = vertex;
     vertex.AddHalfEdge(this);
     this.left = triangle;
 }