| 173 | } |
| 174 | |
| 175 | int uintCompare(const void *a, const void *b) { |
| 176 | uint c=*((uint*)a), d=*((uint*)b); return c>d?1:c<d?-1:0; |
| 177 | } |
| 178 | |
| 179 | void rleFrPoly( RLE *R, const double *xy, siz k, siz h, siz w ) { |
| 180 | /* upsample and get discrete points densely along entire boundary */ |
nothing calls this directly
no outgoing calls
no test coverage detected