HomeSort by: relevance | last modified time | path
    Searched refs:eNext (Results 1 - 3 of 3) sorted by relevancy

  /xsrc/external/mit/glu/dist/src/libtess/
mesh.c 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
    [all...]
tessmono.c 182 GLUhalfEdge *e, *eNext;
184 for( e = mesh->eHead.next; e != &mesh->eHead; e = eNext ) {
185 eNext = e->next;
sweep.c 1212 GLUhalfEdge *e, *eNext, *eLnext;
1216 for( e = eHead->next; e != eHead; e = eNext ) {
1217 eNext = e->next;
1232 if( eLnext == eNext || eLnext == eNext->Sym ) { eNext = eNext->next; }
1235 if( e == eNext || e == eNext->Sym ) { eNext = eNext->next;
    [all...]

Completed in 7 milliseconds