Skip to content
Snippets Groups Projects
Commit 34de7730 authored by philippe.verley_ird.fr's avatar philippe.verley_ird.fr
Browse files

Deleted unused function triangulate.c#is_point_inside_polygon

parent 6158eea9
No related branches found
No related tags found
No related merge requests found
...@@ -2035,34 +2035,3 @@ int triangulate_polygon(int ncontours, int cntr[], double **vertices, int **tria ...@@ -2035,34 +2035,3 @@ int triangulate_polygon(int ncontours, int cntr[], double **vertices, int **tria
return 0; return 0;
} }
/* This function returns TRUE or FALSE depending upon whether the
* vertex is inside the polygon or not. The polygon must already have
* been triangulated before this routine is called.
* This routine will always detect all the points belonging to the
* set (polygon-area - polygon-boundary). The return value for points
* on the boundary is not consistent!!!
*/
int is_point_inside_polygon(double vertex[2])
{
point_t v;
int trnum, rseg;
trap_t *t;
v.x = vertex[0];
v.y = vertex[1];
trnum = locate_endpoint(&v, &v, 1);
t = &tr[trnum];
if (t->state == ST_INVALID)
return FALSE;
if ((t->lseg <= 0) || (t->rseg <= 0))
return FALSE;
rseg = t->rseg;
return _greater_than_equal_to(&seg[rseg].v1, &seg[rseg].v0);
}
...@@ -144,7 +144,6 @@ extern segment_t seg[SEGSIZE]; /* Segment table */ ...@@ -144,7 +144,6 @@ extern segment_t seg[SEGSIZE]; /* Segment table */
/* Functions */ /* Functions */
extern int triangulate_polygon(int, int *, double**,int**); extern int triangulate_polygon(int, int *, double**,int**);
extern int is_point_inside_polygon(double *);
int triangulate_polygon(int, int [], double**, int**); int triangulate_polygon(int, int [], double**, int**);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment