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

  /xsrc/external/mit/glu/dist/src/libtess/
mesh.c 442 /* __gl_meshAddEdgeVertex( eOrg ) creates a new edge eNew such that
443 * eNew == eOrg->Lnext, and eNew->Dst is a newly created vertex.
444 * eOrg and eNew will have the same left face.
449 GLUhalfEdge *eNew = MakeEdge( eOrg );
450 if (eNew == NULL) return NULL;
452 eNewSym = eNew->Sym;
455 Splice( eNew, eOrg->Lnext );
458 eNew->Org = eOrg->Dst;
463 MakeVertex( newVertex, eNewSym, eNew->Org )
    [all...]
sweep.c 889 GLUhalfEdge *eNew;
925 eNew = eLo->Oprev;
927 eNew = eUp;
929 eNew = __gl_meshConnect( eBottomLeft->Lprev, eNew );
930 if (eNew == NULL) longjmp(tess->env,1);
932 /* Prevent cleanup, otherwise eNew might disappear before we've even
935 AddRightEdges( tess, regUp, eNew, eNew->Onext, eNew->Onext, FALSE )
    [all...]

Completed in 4 milliseconds