OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Onext
(Results
1 - 4
of
4
) sorted by null
/external/skia/third_party/glu/libtess/
mesh.c
96
e->
Onext
= e;
104
eSym->
Onext
= eSym;
116
* a->
Onext
and b->
Onext
are exchanged. This can have various effects
122
GLUhalfEdge *aOnext = a->
Onext
;
123
GLUhalfEdge *bOnext = b->
Onext
;
127
a->
Onext
= bOnext;
128
b->
Onext
= aOnext;
161
e = e->
Onext
;
236
e = e->
Onext
;
[
all
...]
mesh.h
71
* (
Onext
) and around the left face (Lnext). There is also a "next"
76
*
Onext
= edge CCW around origin vertex (keep same origin)
148
GLUhalfEdge *
Onext
; /* next edge CCW around origin */
163
#define Lprev
Onext
->Sym
165
#define Rprev Sym->
Onext
198
* eOrg->
Onext
<- OLD( eDst->
Onext
)
199
* eDst->
Onext
<- OLD( eOrg->
Onext
)
sweep.c
328
/* Relink edges so that ePrev->
Onext
== e */
329
if( ePrev->
Onext
!= e ) {
364
e = e->
Onext
;
381
if( e->
Onext
!= ePrev ) {
714
AddRightEdges( tess, regUp, eLo->
Onext
, eUp->Rprev, e, TRUE );
883
GLUhalfEdge *eTopLeft = eBottomLeft->
Onext
;
[
all
...]
render.c
171
for( e = eOrig; ! Marked( e->Lface ); e = e->
Onext
) {
205
for( e = eOrig; ! Marked( e->Lface ); ++tailSize, e = e->
Onext
) {
233
newFace.eStart = eHead->
Onext
;
299
e = e->
Onext
;
327
e = e->
Onext
;
Completed in 52 milliseconds