OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TransLeq
(Results
1 - 2
of
2
) sorted by null
/external/skia/third_party/glu/libtess/
geom.c
111
/* Given three vertices u,v,w such that
TransLeq
(u,v) &&
TransLeq
(v,w),
123
assert(
TransLeq
( u, v ) &&
TransLeq
( v, w ));
147
assert(
TransLeq
( u, v ) &&
TransLeq
( v, w ));
225
* using the
TransLeq
ordering to find the intersection t-value.
251
if( !
TransLeq
( o1, d1 )) { Swap( o1, d1 ); }
252
if( !
TransLeq
( o2, d2 )) { Swap( o2, d2 ); }
253
if( !
TransLeq
( o1, o2 )) { Swap( o1, o2 ); Swap( d1, d2 );
[
all
...]
geom.h
66
#define
TransLeq
(u,v) (((u)->t < (v)->t) || \
Completed in 41 milliseconds