forked from libgeos/geos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPointLocation.cpp
88 lines (76 loc) · 2.41 KB
/
PointLocation.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/**********************************************************************
*
* GEOS - Geometry Engine Open Source
* http://geos.osgeo.org
*
* Copyright (C) 2018 Paul Ramsey <[email protected]>
*
* This is free software; you can redistribute and/or modify it under
* the terms of the GNU Lesser General Public Licence as published
* by the Free Software Foundation.
* See the COPYING file for more information.
*
**********************************************************************
*
* Last port: algorithm/PointLocation.java @ 2017-09-04
*
**********************************************************************/
#include <cmath>
#include <vector>
#include <geos/algorithm/LineIntersector.h>
#include <geos/algorithm/PointLocation.h>
#include <geos/algorithm/RayCrossingCounter.h>
#include <geos/geom/CoordinateSequence.h>
#include <geos/geom/Coordinate.h>
#include <geos/geom/Location.h>
#include <geos/util/IllegalArgumentException.h>
namespace geos {
namespace algorithm { // geos.algorithm
/* public static */
bool
PointLocation::isOnLine(const geom::Coordinate& p, const geom::CoordinateSequence* pt)
{
std::size_t ptsize = pt->getSize();
if(ptsize == 0) {
return false;
}
const geom::Coordinate* pp = &(pt->getAt(0));
for(std::size_t i = 1; i < ptsize; ++i) {
const geom::Coordinate& p1 = pt->getAt(i);
if(LineIntersector::hasIntersection(p, *pp, p1)) {
return true;
}
pp = &p1;
}
return false;
}
/* public static */
bool
PointLocation::isInRing(const geom::Coordinate& p,
const std::vector<const geom::Coordinate*>& ring)
{
return PointLocation::locateInRing(p, ring) != geom::Location::EXTERIOR;
}
/* public static */
bool
PointLocation::isInRing(const geom::Coordinate& p,
const geom::CoordinateSequence* ring)
{
return PointLocation::locateInRing(p, *ring) != geom::Location::EXTERIOR;
}
/* public static */
geom::Location
PointLocation::locateInRing(const geom::Coordinate& p,
const std::vector<const geom::Coordinate*>& ring)
{
return RayCrossingCounter::locatePointInRing(p, ring);
}
/* public static */
geom::Location
PointLocation::locateInRing(const geom::Coordinate& p,
const geom::CoordinateSequence& ring)
{
return RayCrossingCounter::locatePointInRing(p, ring);
}
} // namespace geos.algorithm
} // namespace geos