Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ads
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AMAP
ads
Commits
34de7730
Commit
34de7730
authored
2 years ago
by
philippe.verley_ird.fr
Browse files
Options
Downloads
Patches
Plain Diff
Deleted unused function triangulate.c#is_point_inside_polygon
parent
6158eea9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/triangulate.c
+0
-31
0 additions, 31 deletions
src/triangulate.c
src/triangulate.h
+0
-1
0 additions, 1 deletion
src/triangulate.h
with
0 additions
and
32 deletions
src/triangulate.c
+
0
−
31
View file @
34de7730
...
@@ -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
);
}
This diff is collapsed.
Click to expand it.
src/triangulate.h
+
0
−
1
View file @
34de7730
...
@@ -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
**
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment