-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathIntersectionQuery.js
107 lines (85 loc) · 2.43 KB
/
IntersectionQuery.js
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/**
*
* IntersectionQuery.js
*
* @copyright 2017 Kevin Lindsey
* @module IntersectionQuery
*/
import {Vector2D} from "kld-affine";
/**
* @namespace
*/
const IntersectionQuery = {};
/**
* pointInCircle
*
* @param {module:kld-intersections.Point2D} point
* @param {module:kld-intersections.Point2D} center
* @param {number} radius
* @returns {boolean}
*/
IntersectionQuery.pointInCircle = function(point, center, radius) {
const v = Vector2D.fromPoints(center, point);
return v.length() <= radius;
};
/**
* pointInEllipse
*
* @param {module:kld-intersections.Point2D} point
* @param {module:kld-intersections.Point2D} center
* @param {number} radiusX
* @param {number} radiusY
* @returns {boolean}
*/
IntersectionQuery.pointInEllipse = function(point, center, radiusX, radiusY) {
const len = point.subtract(center);
return (len.x * len.x) / (radiusX * radiusX) + (len.y * len.y) / (radiusY * radiusY) <= 1;
};
/**
* pointInPolyline
*
* @param {module:kld-intersections.Point2D} point
* @param {Array<module:kld-intersections.Point2D>} points
*/
IntersectionQuery.pointInPolyline = function(point, points) {
const {length: len} = points;
let counter = 0;
let xInter;
let p1 = points[0];
for (let i = 1; i <= len; i++) {
const p2 = points[i % len];
const minY = Math.min(p1.y, p2.y);
const maxY = Math.max(p1.y, p2.y);
const maxX = Math.max(p1.x, p2.x);
if (p1.y !== p2.y && minY < point.y && point.y <= maxY && point.x <= maxX) {
xInter = (point.y - p1.y) * (p2.x - p1.x) / (p2.y - p1.y) + p1.x;
if (p1.x === p2.x || point.x <= xInter) {
counter++;
}
}
p1 = p2;
}
return (counter % 2 === 1);
};
/**
* pointInPolyline
*
* @param {module:kld-intersections.Point2D} point
* @param {Array<module:kld-intersections.Point2D>} points
*/
IntersectionQuery.pointInPolygon = IntersectionQuery.pointInPolyline;
/**
* pointInRectangle
*
* @param {module:kld-intersections.Point2D} point
* @param {module:kld-intersections.Point2D} topLeft
* @param {module:kld-intersections.Point2D} bottomRight
* @returns {boolean}
*/
IntersectionQuery.pointInRectangle = function(point, topLeft, bottomRight) {
return (
topLeft.x <= point.x && point.x < bottomRight.x &&
topLeft.y <= point.y && point.y < bottomRight.y
);
};
export default IntersectionQuery;