Lines Matching defs:eNext
69 static GLUhalfEdge *MakeEdge( GLUhalfEdge *eNext )
80 /* Make sure eNext points to the first edge of the edge pair */
81 if( eNext->Sym < eNext ) { eNext = eNext->Sym; }
83 /* Insert in circular doubly-linked list before eNext.
86 ePrev = eNext->Sym->next;
89 e->next = eNext;
90 eNext->Sym->next = eSym;
206 GLUhalfEdge *ePrev, *eNext;
212 eNext = eDel->next;
214 eNext->Sym->next = ePrev;
215 ePrev->Sym->next = eNext;
558 GLUhalfEdge *e, *eNext, *eSym;
562 eNext = eStart->Lnext;
564 e = eNext;
565 eNext = e->Lnext;
715 GLUhalfEdge *e, *eNext;
727 for( e = mesh->eHead.next; e != &mesh->eHead; e = eNext ) {
729 eNext = e->next;