Lines Matching defs:fNext
162 /* MakeFace( newFace, eOrig, fNext ) attaches a new face and makes it the left
163 * face of all edges in the face loop to which eOrig belongs. "fNext" gives
165 * the new face *before* fNext so that algorithms which walk the face
168 static void MakeFace( GLUface *newFace, GLUhalfEdge *eOrig, GLUface *fNext )
176 /* insert in circular doubly-linked list before fNext */
177 fPrev = fNext->prev;
180 fNew->next = fNext;
181 fNext->prev = fNew;
191 fNew->inside = fNext->inside;
251 GLUface *fPrev, *fNext;
262 fNext = fDel->next;
263 fNext->prev = fPrev;
264 fPrev->next = fNext;
559 GLUface *fPrev, *fNext;
592 fNext = fZap->next;
593 fNext->prev = fPrev;
594 fPrev->next = fNext;
713 GLUface *f, *fNext;
717 for( f = mesh->fHead.next; f != &mesh->fHead; f = fNext ) {
718 fNext = f->next;