mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-29 01:43:45 +08:00
7 lines
313 B
Cython
7 lines
313 B
Cython
cdef unsigned char point_in_polygon(int nr_verts, double *xp, double *yp,
|
|
double x, double y)
|
|
|
|
cdef void points_in_polygon(int nr_verts, double *xp, double *yp,
|
|
int nr_points, double *x, double *y,
|
|
unsigned char *result)
|