예제 #1
0
파일: HBEdge.cs 프로젝트: andybak/CGAL
 public void Set(HBVertex vertex, HBFace face, HBEdge previous, HBEdge next, HBEdge opposite)
 {
     Vertex   = vertex;
     Face     = face;
     Previous = previous;
     Next     = next;
     Opposite = opposite;
 }
예제 #2
0
파일: HBMesh.cs 프로젝트: andybak/CGAL
        public int IndexOf(HBVertex vertex)
        {
            VERTEX v = vertex as VERTEX;

            if (v == null)
            {
                return(-1);
            }
            return(Vertices.IndexOf(v));
        }
예제 #3
0
파일: HBEdge.cs 프로젝트: andybak/CGAL
 public HBEdge(HBVertex vertex, HBFace face, HBEdge previous, HBEdge next, HBEdge opposite)
 {
     Set(vertex, face, previous, next, opposite);
 }