Пример #1
0
 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
        public int IndexOf(HBVertex vertex)
        {
            VERTEX v = vertex as VERTEX;

            if (v == null)
            {
                return(-1);
            }
            return(Vertices.IndexOf(v));
        }
Пример #3
0
 public HBEdge(HBVertex vertex, HBFace face, HBEdge previous, HBEdge next, HBEdge opposite)
 {
     Set(vertex, face, previous, next, opposite);
 }