@immugio/three-math-extensions 0.2.9 → 0.2.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -3
- package/README.md +1 -80
- package/cjs/Line2D.js +18 -0
- package/cjs/Vec2.js +11 -0
- package/cjs/directions.js +12 -0
- package/cjs/directions2d.js +10 -0
- package/cjs/index.js +7 -1
- package/cjs/isPointInPolygon.js +16 -0
- package/docs/README.md +86 -1
- package/docs/classes/BoundingBox.md +7 -7
- package/docs/classes/Line2D.md +88 -60
- package/docs/classes/Line3D.md +32 -32
- package/docs/classes/Polygon.md +15 -15
- package/docs/classes/Rectangle.md +17 -17
- package/docs/classes/Size2.md +3 -3
- package/docs/classes/Vec2.md +54 -6
- package/docs/classes/Vec3.md +11 -11
- package/docs/interfaces/Point2.md +2 -2
- package/docs/interfaces/Point3.md +3 -3
- package/docs/modules.md +25 -3
- package/esm/Line2D.js +18 -0
- package/esm/Vec2.js +11 -0
- package/esm/directions.js +9 -0
- package/esm/directions2d.js +7 -0
- package/esm/index.js +3 -0
- package/esm/isPointInPolygon.js +12 -0
- package/package.json +1 -1
- package/src/Line2D.ts +22 -0
- package/src/Vec2.ts +17 -4
- package/src/directions.ts +10 -0
- package/src/directions2d.ts +8 -0
- package/src/index.ts +4 -1
- package/src/isPointInPolygon.ts +19 -0
- package/types/Line2D.d.ts +8 -0
- package/types/Vec2.d.ts +6 -0
- package/types/directions.d.ts +9 -0
- package/types/directions2d.d.ts +7 -0
- package/types/index.d.ts +3 -0
- package/types/isPointInPolygon.d.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,30 +7,48 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
9
9
|
|
|
10
|
-
## [0.2.
|
|
10
|
+
## [0.2.11](https://github.com/Immugio/three-math-extensions/compare/16.15.10...0.2.11)
|
|
11
11
|
|
|
12
12
|
### Commits
|
|
13
13
|
|
|
14
14
|
- Add Rectangle, update Polygon [`58ee875`](https://github.com/Immugio/three-math-extensions/commit/58ee87539af8f9ade186e5250cba9e01926da514)
|
|
15
|
+
- Add isPointInPolygon [`a59eb4b`](https://github.com/Immugio/three-math-extensions/commit/a59eb4be026f17a3106070ae626a0588cd4f4411)
|
|
15
16
|
- Improve Line2D.closestPointToPoint, add Vec2.signedAngle [`151f214`](https://github.com/Immugio/three-math-extensions/commit/151f21462e0358057ad8e9d75d5782563a1061f6)
|
|
16
17
|
- Improve documentation [`d0fcb51`](https://github.com/Immugio/three-math-extensions/commit/d0fcb5132f127b4382ac5f7291575a061b8ec121)
|
|
17
18
|
- Vec3, Line3D - update documentation [`67d9c32`](https://github.com/Immugio/three-math-extensions/commit/67d9c328e08cc0a5599932d2f0529e97f31c9213)
|
|
18
19
|
- Add Polygon [`629cff8`](https://github.com/Immugio/three-math-extensions/commit/629cff8ecbb963477e8ea76d7f8b16d95435cbad)
|
|
20
|
+
- Line2D.isCloserToHorizontal [`b6f1429`](https://github.com/Immugio/three-math-extensions/commit/b6f14292d1d2765f7314c45e4c74be91280ac764)
|
|
21
|
+
- Add Vec2.angleTo and tests [`dcf1e53`](https://github.com/Immugio/three-math-extensions/commit/dcf1e531aecf8c115f323e14e5e44059e5c5d15c)
|
|
19
22
|
- Add Vec2.signedAngle [`863c8f2`](https://github.com/Immugio/three-math-extensions/commit/863c8f27f11288cbda535e21bb688206259269ed)
|
|
20
23
|
- Add Vec2.fromPoints to accept multiple points [`a261402`](https://github.com/Immugio/three-math-extensions/commit/a2614027cf5fb8263189b48f7e0bb9a23a552c15)
|
|
21
24
|
- Add Vec2.parallelTo [`989874d`](https://github.com/Immugio/three-math-extensions/commit/989874dcfe122d3ee84d8d56d79cb88e4e441736)
|
|
22
25
|
- Line2D.intersect - enable line segments intersection only [`1f1470e`](https://github.com/Immugio/three-math-extensions/commit/1f1470e1cf00118e643f5c44a135e0baf6b76d41)
|
|
26
|
+
- Add Line2D.projectOn [`4c52c5c`](https://github.com/Immugio/three-math-extensions/commit/4c52c5c2e649fbddb72ce3fca60cfd3f1319f72f)
|
|
23
27
|
- Polygon from bounding size [`eae6701`](https://github.com/Immugio/three-math-extensions/commit/eae67012f57f426f8b5259b765000447ce06d608)
|
|
24
28
|
- Line2D and Line3D to return this instead of specific type [`761ef6a`](https://github.com/Immugio/three-math-extensions/commit/761ef6a9d8cc4e35120b666576794e521aa3b991)
|
|
25
29
|
- Line2D.in3DSpace added [`a6ce0ec`](https://github.com/Immugio/three-math-extensions/commit/a6ce0ecb67f5c7b2a75fcc283c28af626153a4af)
|
|
26
30
|
- Line2D.hasIntersectionWithAngle to support optional tolerance [`b313bbe`](https://github.com/Immugio/three-math-extensions/commit/b313bbe118d435d53750deefd9a9e29ba6ec5c71)
|
|
27
31
|
- Line2D.hasIntersectionWithAngle - modulo all angles [`5409aa0`](https://github.com/Immugio/three-math-extensions/commit/5409aa0bc41510efa86d548e91837e44e5b6c343)
|
|
32
|
+
- Use Vec2 instead of Vector2 [`7e6a6ea`](https://github.com/Immugio/three-math-extensions/commit/7e6a6ea272f4441ef4bc78b3fdec23fc783fa1db)
|
|
28
33
|
- Update release instructions [`5b41a2e`](https://github.com/Immugio/three-math-extensions/commit/5b41a2ed7e15450dbb6088a7f7ed0031a013badc)
|
|
29
34
|
- Add Polygon to exports [`ed66775`](https://github.com/Immugio/three-math-extensions/commit/ed66775c33e961835b23843222b822cfd9c16b1d)
|
|
30
35
|
- Vec2.fromPoint and Vec3.fromPoint should accept null [`4b871af`](https://github.com/Immugio/three-math-extensions/commit/4b871af297bdcbe8584f1e2b99d602247b77687c)
|
|
36
|
+
- Documentation update [`d5c7a07`](https://github.com/Immugio/three-math-extensions/commit/d5c7a0765f6097f5d3a3be01967d4059f19682fb)
|
|
31
37
|
- Excluded files from build [`ec70614`](https://github.com/Immugio/three-math-extensions/commit/ec70614bc7df7a98f854c7a6693365118e04faf7)
|
|
32
38
|
|
|
33
|
-
## [16.15.10](https://github.com/Immugio/three-math-extensions/compare/0.2.
|
|
39
|
+
## [16.15.10](https://github.com/Immugio/three-math-extensions/compare/0.2.10...16.15.10) - 2023-01-02
|
|
40
|
+
|
|
41
|
+
## [0.2.10](https://github.com/Immugio/three-math-extensions/compare/0.2.9...0.2.10) - 2023-05-30
|
|
42
|
+
|
|
43
|
+
### Commits
|
|
44
|
+
|
|
45
|
+
- Add isPointInPolygon [`a59eb4b`](https://github.com/Immugio/three-math-extensions/commit/a59eb4be026f17a3106070ae626a0588cd4f4411)
|
|
46
|
+
|
|
47
|
+
## [0.2.9](https://github.com/Immugio/three-math-extensions/compare/0.2.8...0.2.9) - 2023-05-22
|
|
48
|
+
|
|
49
|
+
### Commits
|
|
50
|
+
|
|
51
|
+
- Line2D.intersect - enable line segments intersection only [`1f1470e`](https://github.com/Immugio/three-math-extensions/commit/1f1470e1cf00118e643f5c44a135e0baf6b76d41)
|
|
34
52
|
|
|
35
53
|
## [0.2.8](https://github.com/Immugio/three-math-extensions/compare/0.2.7...0.2.8) - 2023-05-19
|
|
36
54
|
|
|
@@ -168,7 +186,19 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
168
186
|
|
|
169
187
|
- Release 0.0.4 - tag pattern 4 [`ab9ad4e`](https://github.com/Immugio/three-math-extensions/commit/ab9ad4e49477a991482ed6d4d3a3ca4687a70b44)
|
|
170
188
|
|
|
171
|
-
## 0.0.7 - 2022-11-21
|
|
189
|
+
## [0.0.7](https://github.com/Immugio/three-math-extensions/compare/0.0.6...0.0.7) - 2022-11-21
|
|
190
|
+
|
|
191
|
+
## [0.0.6](https://github.com/Immugio/three-math-extensions/compare/0.0.4...0.0.6) - 2022-11-24
|
|
192
|
+
|
|
193
|
+
### Commits
|
|
194
|
+
|
|
195
|
+
- Improve API, minor bug fix, improve test coverage [`881a5f0`](https://github.com/Immugio/three-math-extensions/commit/881a5f096823f0d5fd90faa76cd602f076291bc5)
|
|
196
|
+
- Add .npmignore [`f58329a`](https://github.com/Immugio/three-math-extensions/commit/f58329a86b96589bb574d6ebed37d4cc4474663a)
|
|
197
|
+
- Correct change log version [`c6244bf`](https://github.com/Immugio/three-math-extensions/commit/c6244bf1488ad21bcc5589d1dff62c41d8182d48)
|
|
198
|
+
- Release 0.0.4 - tag pattern 6 [`c1c5454`](https://github.com/Immugio/three-math-extensions/commit/c1c54541ed400e1ad49bf42fe8926cd5293efefd)
|
|
199
|
+
- Release 0.0.4 - tag pattern 5 [`5245eed`](https://github.com/Immugio/three-math-extensions/commit/5245eed60195103e989c0fadf9bd642f39ef4589)
|
|
200
|
+
|
|
201
|
+
## 0.0.4 - 2022-11-21
|
|
172
202
|
|
|
173
203
|
### Commits
|
|
174
204
|
|
|
@@ -185,6 +215,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
185
215
|
- Edit publish script condition [`dc77d89`](https://github.com/Immugio/three-math-extensions/commit/dc77d8978d87daab8732d6429ad1b01ba0ca6f97)
|
|
186
216
|
- CI to use node version 16 [`dc42650`](https://github.com/Immugio/three-math-extensions/commit/dc426508939de922cc0316b7652bbd09aeed4610)
|
|
187
217
|
- Action rename [`26a1f01`](https://github.com/Immugio/three-math-extensions/commit/26a1f014827faab2c02d30ca8ed18dac8f9ff8af)
|
|
218
|
+
- Release 0.0.4 - tag pattern 4 [`ab9ad4e`](https://github.com/Immugio/three-math-extensions/commit/ab9ad4e49477a991482ed6d4d3a3ca4687a70b44)
|
|
188
219
|
- Release 0.0.4 - tag pattern 3 [`d7d4c8f`](https://github.com/Immugio/three-math-extensions/commit/d7d4c8f546e6550868ddd06a5213fdec6c68bcd2)
|
|
189
220
|
- Release 0.0.4 - tag pattern 2 [`0dcf801`](https://github.com/Immugio/three-math-extensions/commit/0dcf80190bd67a3ca93d45131a403201ab39e00f)
|
|
190
221
|
- Release 0.0.4 - tag pattern [`e7f2f76`](https://github.com/Immugio/three-math-extensions/commit/e7f2f76aa247e1c51f0522c300a7aaf07253039c)
|
package/README.md
CHANGED
|
@@ -6,83 +6,4 @@
|
|
|
6
6
|
|
|
7
7
|
# @immugio/three-math-extensions
|
|
8
8
|
|
|
9
|
-
##
|
|
10
|
-
|
|
11
|
-
### Classes
|
|
12
|
-
|
|
13
|
-
- [BoundingBox](docs/classes/BoundingBox.md)
|
|
14
|
-
- [Line2D](docs/classes/Line2D.md)
|
|
15
|
-
- [Line3D](docs/classes/Line3D.md)
|
|
16
|
-
- [Polygon](docs/classes/Polygon.md)
|
|
17
|
-
- [Rectangle](docs/classes/Rectangle.md)
|
|
18
|
-
- [Size2](docs/classes/Size2.md)
|
|
19
|
-
- [Vec2](docs/classes/Vec2.md)
|
|
20
|
-
- [Vec3](docs/classes/Vec3.md)
|
|
21
|
-
|
|
22
|
-
### Interfaces
|
|
23
|
-
|
|
24
|
-
- [Point2](docs/interfaces/Point2.md)
|
|
25
|
-
- [Point3](docs/interfaces/Point3.md)
|
|
26
|
-
|
|
27
|
-
### Variables
|
|
28
|
-
|
|
29
|
-
- [TwoPI](docs/modules.md#twopi)
|
|
30
|
-
|
|
31
|
-
### Functions
|
|
32
|
-
|
|
33
|
-
- [normalizeAngleDegrees](docs/modules.md#normalizeangledegrees)
|
|
34
|
-
- [normalizeAngleRadians](docs/modules.md#normalizeangleradians)
|
|
35
|
-
|
|
36
|
-
## Variables
|
|
37
|
-
|
|
38
|
-
### TwoPI
|
|
39
|
-
|
|
40
|
-
• `Const` **TwoPI**: `number`
|
|
41
|
-
|
|
42
|
-
#### Defined in
|
|
43
|
-
|
|
44
|
-
[src/MathConstants.ts:1](https://github.com/Immugio/three-math-extensions/blob/151f214/src/MathConstants.ts#L1)
|
|
45
|
-
|
|
46
|
-
## Functions
|
|
47
|
-
|
|
48
|
-
### normalizeAngleDegrees
|
|
49
|
-
|
|
50
|
-
▸ **normalizeAngleDegrees**(`angle`): `number`
|
|
51
|
-
|
|
52
|
-
Normalizes an angle in degrees to the range [0, 360].
|
|
53
|
-
|
|
54
|
-
#### Parameters
|
|
55
|
-
|
|
56
|
-
| Name | Type | Description |
|
|
57
|
-
| :------ | :------ | :------ |
|
|
58
|
-
| `angle` | `number` | in degrees |
|
|
59
|
-
|
|
60
|
-
#### Returns
|
|
61
|
-
|
|
62
|
-
`number`
|
|
63
|
-
|
|
64
|
-
#### Defined in
|
|
65
|
-
|
|
66
|
-
[src/normalizeAngleDegrees.ts:5](https://github.com/Immugio/three-math-extensions/blob/151f214/src/normalizeAngleDegrees.ts#L5)
|
|
67
|
-
|
|
68
|
-
___
|
|
69
|
-
|
|
70
|
-
### normalizeAngleRadians
|
|
71
|
-
|
|
72
|
-
▸ **normalizeAngleRadians**(`angle`): `number`
|
|
73
|
-
|
|
74
|
-
Normalize an angle in radians to the range of 0 to 2π.
|
|
75
|
-
|
|
76
|
-
#### Parameters
|
|
77
|
-
|
|
78
|
-
| Name | Type | Description |
|
|
79
|
-
| :------ | :------ | :------ |
|
|
80
|
-
| `angle` | `number` | in radians |
|
|
81
|
-
|
|
82
|
-
#### Returns
|
|
83
|
-
|
|
84
|
-
`number`
|
|
85
|
-
|
|
86
|
-
#### Defined in
|
|
87
|
-
|
|
88
|
-
[src/normalizeAngleRadians.ts:7](https://github.com/Immugio/three-math-extensions/blob/151f214/src/normalizeAngleRadians.ts#L7)
|
|
9
|
+
## [Documentation](docs/modules.md)
|
package/cjs/Line2D.js
CHANGED
|
@@ -6,6 +6,7 @@ const Vec2_1 = require("./Vec2");
|
|
|
6
6
|
const three_2 = require("three");
|
|
7
7
|
const MathConstants_1 = require("./MathConstants");
|
|
8
8
|
const Line3D_1 = require("./Line3D");
|
|
9
|
+
const directions2d_1 = require("./directions2d");
|
|
9
10
|
const _startP = /*@__PURE__*/ new Vec2_1.Vec2();
|
|
10
11
|
const _startEnd = /*@__PURE__*/ new Vec2_1.Vec2();
|
|
11
12
|
class Line2D {
|
|
@@ -316,6 +317,16 @@ class Line2D {
|
|
|
316
317
|
}
|
|
317
318
|
return result;
|
|
318
319
|
}
|
|
320
|
+
/**
|
|
321
|
+
* Returns a new line that is the projection of this line onto @other. Uses `closestPointToPoint` to find the projection.
|
|
322
|
+
* @param other
|
|
323
|
+
* @param clampToLine
|
|
324
|
+
*/
|
|
325
|
+
projectOn(other, clampToLine) {
|
|
326
|
+
const p1 = other.closestPointToPoint(this.start, clampToLine, new Vec2_1.Vec2());
|
|
327
|
+
const p2 = other.closestPointToPoint(this.end, clampToLine, new Vec2_1.Vec2());
|
|
328
|
+
return p1.distanceTo(this.start) < p2.distanceTo(this.start) ? new Line2D(p1, p2) : new Line2D(p2, p1);
|
|
329
|
+
}
|
|
319
330
|
/**
|
|
320
331
|
* Divides the Line3D into a number of segments of the given length.
|
|
321
332
|
* Clone the line, does not modify.
|
|
@@ -562,6 +573,13 @@ class Line2D {
|
|
|
562
573
|
}
|
|
563
574
|
return null;
|
|
564
575
|
}
|
|
576
|
+
get isCloserToHorizontal() {
|
|
577
|
+
const direction = this.direction;
|
|
578
|
+
return direction.angleTo(directions2d_1.directions2d.Right) < Math.PI / 4 || direction.angleTo(directions2d_1.directions2d.Left) < Math.PI / 4;
|
|
579
|
+
}
|
|
580
|
+
get isCloserToVertical() {
|
|
581
|
+
return !this.isCloserToHorizontal;
|
|
582
|
+
}
|
|
565
583
|
/**
|
|
566
584
|
* Project the line to 2D space. For start and end points Vec2.y becomes Vec3.z. and Vec3.y is provided as an argument.
|
|
567
585
|
* @param y - The y value of the new Vec3 instance.
|
package/cjs/Vec2.js
CHANGED
|
@@ -73,6 +73,17 @@ class Vec2 extends three_1.Vector2 {
|
|
|
73
73
|
const signed_angle = Math.atan2(this.y, this.x) - Math.atan2(0, 1);
|
|
74
74
|
return (0, normalizeAngleRadians_1.normalizeAngleRadians)(signed_angle);
|
|
75
75
|
}
|
|
76
|
+
/**
|
|
77
|
+
* Returns the angle between this vector and the given vector, the return value is between 0 and PI
|
|
78
|
+
* Both vectors are expected to be normalized
|
|
79
|
+
* @param other Vector2 normalized vector
|
|
80
|
+
*/
|
|
81
|
+
angleTo(other) {
|
|
82
|
+
// Calculate the dot product of the vectors
|
|
83
|
+
const dot = this.dot(other);
|
|
84
|
+
// Calculate the angle in radians between the two vectors
|
|
85
|
+
return Math.acos(Math.min(Math.max(dot, -1.0), 1.0));
|
|
86
|
+
}
|
|
76
87
|
/**
|
|
77
88
|
* check if the angle between the two vectors is close enough to 0 or 180 degrees (same or opposite direction) within the given tolerance
|
|
78
89
|
* @param other Vector2
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.directions = void 0;
|
|
4
|
+
const Vec3_1 = require("./Vec3");
|
|
5
|
+
exports.directions = {
|
|
6
|
+
North: new Vec3_1.Vec3(0, 0, -1),
|
|
7
|
+
South: new Vec3_1.Vec3(0, 0, 1),
|
|
8
|
+
East: new Vec3_1.Vec3(1, 0, 0),
|
|
9
|
+
West: new Vec3_1.Vec3(-1, 0, 0),
|
|
10
|
+
Up: new Vec3_1.Vec3(0, 1, 0),
|
|
11
|
+
Down: new Vec3_1.Vec3(0, -1, 0)
|
|
12
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.directions2d = void 0;
|
|
4
|
+
const Vec2_1 = require("./Vec2");
|
|
5
|
+
exports.directions2d = {
|
|
6
|
+
Up: new Vec2_1.Vec2(0, -1),
|
|
7
|
+
Down: new Vec2_1.Vec2(0, 1),
|
|
8
|
+
Left: new Vec2_1.Vec2(-1, 0),
|
|
9
|
+
Right: new Vec2_1.Vec2(1, 0)
|
|
10
|
+
};
|
package/cjs/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TwoPI = exports.normalizeAngleRadians = exports.normalizeAngleDegrees = exports.Rectangle = exports.BoundingBox = exports.Polygon = exports.Size2 = exports.Line3D = exports.Line2D = exports.Vec3 = exports.Vec2 = void 0;
|
|
3
|
+
exports.directions2d = exports.directions = exports.isPointInPolygon = exports.TwoPI = exports.normalizeAngleRadians = exports.normalizeAngleDegrees = exports.Rectangle = exports.BoundingBox = exports.Polygon = exports.Size2 = exports.Line3D = exports.Line2D = exports.Vec3 = exports.Vec2 = void 0;
|
|
4
4
|
var Vec2_1 = require("./Vec2");
|
|
5
5
|
Object.defineProperty(exports, "Vec2", { enumerable: true, get: function () { return Vec2_1.Vec2; } });
|
|
6
6
|
var Vec3_1 = require("./Vec3");
|
|
@@ -23,3 +23,9 @@ var normalizeAngleRadians_1 = require("./normalizeAngleRadians");
|
|
|
23
23
|
Object.defineProperty(exports, "normalizeAngleRadians", { enumerable: true, get: function () { return normalizeAngleRadians_1.normalizeAngleRadians; } });
|
|
24
24
|
var MathConstants_1 = require("./MathConstants");
|
|
25
25
|
Object.defineProperty(exports, "TwoPI", { enumerable: true, get: function () { return MathConstants_1.TwoPI; } });
|
|
26
|
+
var isPointInPolygon_1 = require("./isPointInPolygon");
|
|
27
|
+
Object.defineProperty(exports, "isPointInPolygon", { enumerable: true, get: function () { return isPointInPolygon_1.isPointInPolygon; } });
|
|
28
|
+
var directions_1 = require("./directions");
|
|
29
|
+
Object.defineProperty(exports, "directions", { enumerable: true, get: function () { return directions_1.directions; } });
|
|
30
|
+
var directions2d_1 = require("./directions2d");
|
|
31
|
+
Object.defineProperty(exports, "directions2d", { enumerable: true, get: function () { return directions2d_1.directions2d; } });
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isPointInPolygon = void 0;
|
|
4
|
+
function isPointInPolygon(p, point) {
|
|
5
|
+
const x = point.x, y = point.y;
|
|
6
|
+
let i, j, c = false;
|
|
7
|
+
for (i = 0, j = p.length - 1; i < p.length; j = i++) {
|
|
8
|
+
if ((((p[i].y <= y) && (y < p[j].y)) ||
|
|
9
|
+
((p[j].y <= y) && (y < p[i].y))) &&
|
|
10
|
+
(x < (p[j].x - p[i].x) * (y - p[i].y) / (p[j].y - p[i].y) + p[i].x)) {
|
|
11
|
+
c = !c;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
return c;
|
|
15
|
+
}
|
|
16
|
+
exports.isPointInPolygon = isPointInPolygon;
|
package/docs/README.md
CHANGED
|
@@ -1,5 +1,90 @@
|
|
|
1
1
|
@immugio/three-math-extensions / [Exports](modules.md)
|
|
2
2
|
|
|
3
|
-
# Set of utilities for 2d and 3d
|
|
3
|
+
# Set of utilities for 2d and 3d math built on top of three.js
|
|
4
4
|
|
|
5
5
|
[](https://github.com/Immugio/three-math-extensions/actions/workflows/build.yml)
|
|
6
|
+
|
|
7
|
+
[@immugio/three-math-extensions](README.md) / Exports
|
|
8
|
+
|
|
9
|
+
# @immugio/three-math-extensions
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
### Classes
|
|
14
|
+
|
|
15
|
+
- [BoundingBox](docs/classes/BoundingBox.md)
|
|
16
|
+
- [Line2D](docs/classes/Line2D.md)
|
|
17
|
+
- [Line3D](docs/classes/Line3D.md)
|
|
18
|
+
- [Polygon](docs/classes/Polygon.md)
|
|
19
|
+
- [Rectangle](docs/classes/Rectangle.md)
|
|
20
|
+
- [Size2](docs/classes/Size2.md)
|
|
21
|
+
- [Vec2](docs/classes/Vec2.md)
|
|
22
|
+
- [Vec3](docs/classes/Vec3.md)
|
|
23
|
+
|
|
24
|
+
### Interfaces
|
|
25
|
+
|
|
26
|
+
- [Point2](docs/interfaces/Point2.md)
|
|
27
|
+
- [Point3](docs/interfaces/Point3.md)
|
|
28
|
+
|
|
29
|
+
### Variables
|
|
30
|
+
|
|
31
|
+
- [TwoPI](docs/modules.md#twopi)
|
|
32
|
+
|
|
33
|
+
### Functions
|
|
34
|
+
|
|
35
|
+
- [normalizeAngleDegrees](docs/modules.md#normalizeangledegrees)
|
|
36
|
+
- [normalizeAngleRadians](docs/modules.md#normalizeangleradians)
|
|
37
|
+
|
|
38
|
+
## Variables
|
|
39
|
+
|
|
40
|
+
### TwoPI
|
|
41
|
+
|
|
42
|
+
• `Const` **TwoPI**: `number`
|
|
43
|
+
|
|
44
|
+
#### Defined in
|
|
45
|
+
|
|
46
|
+
[src/MathConstants.ts:1](https://github.com/Immugio/three-math-extensions/blob/151f214/src/MathConstants.ts#L1)
|
|
47
|
+
|
|
48
|
+
## Functions
|
|
49
|
+
|
|
50
|
+
### normalizeAngleDegrees
|
|
51
|
+
|
|
52
|
+
▸ **normalizeAngleDegrees**(`angle`): `number`
|
|
53
|
+
|
|
54
|
+
Normalizes an angle in degrees to the range [0, 360].
|
|
55
|
+
|
|
56
|
+
#### Parameters
|
|
57
|
+
|
|
58
|
+
| Name | Type | Description |
|
|
59
|
+
| :------ | :------ | :------ |
|
|
60
|
+
| `angle` | `number` | in degrees |
|
|
61
|
+
|
|
62
|
+
#### Returns
|
|
63
|
+
|
|
64
|
+
`number`
|
|
65
|
+
|
|
66
|
+
#### Defined in
|
|
67
|
+
|
|
68
|
+
[src/normalizeAngleDegrees.ts:5](https://github.com/Immugio/three-math-extensions/blob/151f214/src/normalizeAngleDegrees.ts#L5)
|
|
69
|
+
|
|
70
|
+
___
|
|
71
|
+
|
|
72
|
+
### normalizeAngleRadians
|
|
73
|
+
|
|
74
|
+
▸ **normalizeAngleRadians**(`angle`): `number`
|
|
75
|
+
|
|
76
|
+
Normalize an angle in radians to the range of 0 to 2π.
|
|
77
|
+
|
|
78
|
+
#### Parameters
|
|
79
|
+
|
|
80
|
+
| Name | Type | Description |
|
|
81
|
+
| :------ | :------ | :------ |
|
|
82
|
+
| `angle` | `number` | in radians |
|
|
83
|
+
|
|
84
|
+
#### Returns
|
|
85
|
+
|
|
86
|
+
`number`
|
|
87
|
+
|
|
88
|
+
#### Defined in
|
|
89
|
+
|
|
90
|
+
[src/normalizeAngleRadians.ts:7](https://github.com/Immugio/three-math-extensions/blob/151f214/src/normalizeAngleRadians.ts#L7)
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
|
|
41
41
|
#### Defined in
|
|
42
42
|
|
|
43
|
-
[src/BoundingBox.ts:4](https://github.com/Immugio/three-math-extensions/blob/
|
|
43
|
+
[src/BoundingBox.ts:4](https://github.com/Immugio/three-math-extensions/blob/66cba15/src/BoundingBox.ts#L4)
|
|
44
44
|
|
|
45
45
|
## Properties
|
|
46
46
|
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
|
|
51
51
|
#### Defined in
|
|
52
52
|
|
|
53
|
-
[src/BoundingBox.ts:4](https://github.com/Immugio/three-math-extensions/blob/
|
|
53
|
+
[src/BoundingBox.ts:4](https://github.com/Immugio/three-math-extensions/blob/66cba15/src/BoundingBox.ts#L4)
|
|
54
54
|
|
|
55
55
|
___
|
|
56
56
|
|
|
@@ -60,7 +60,7 @@ ___
|
|
|
60
60
|
|
|
61
61
|
#### Defined in
|
|
62
62
|
|
|
63
|
-
[src/BoundingBox.ts:4](https://github.com/Immugio/three-math-extensions/blob/
|
|
63
|
+
[src/BoundingBox.ts:4](https://github.com/Immugio/three-math-extensions/blob/66cba15/src/BoundingBox.ts#L4)
|
|
64
64
|
|
|
65
65
|
___
|
|
66
66
|
|
|
@@ -70,7 +70,7 @@ ___
|
|
|
70
70
|
|
|
71
71
|
#### Defined in
|
|
72
72
|
|
|
73
|
-
[src/BoundingBox.ts:4](https://github.com/Immugio/three-math-extensions/blob/
|
|
73
|
+
[src/BoundingBox.ts:4](https://github.com/Immugio/three-math-extensions/blob/66cba15/src/BoundingBox.ts#L4)
|
|
74
74
|
|
|
75
75
|
___
|
|
76
76
|
|
|
@@ -80,7 +80,7 @@ ___
|
|
|
80
80
|
|
|
81
81
|
#### Defined in
|
|
82
82
|
|
|
83
|
-
[src/BoundingBox.ts:4](https://github.com/Immugio/three-math-extensions/blob/
|
|
83
|
+
[src/BoundingBox.ts:4](https://github.com/Immugio/three-math-extensions/blob/66cba15/src/BoundingBox.ts#L4)
|
|
84
84
|
|
|
85
85
|
## Accessors
|
|
86
86
|
|
|
@@ -94,7 +94,7 @@ ___
|
|
|
94
94
|
|
|
95
95
|
#### Defined in
|
|
96
96
|
|
|
97
|
-
[src/BoundingBox.ts:11](https://github.com/Immugio/three-math-extensions/blob/
|
|
97
|
+
[src/BoundingBox.ts:11](https://github.com/Immugio/three-math-extensions/blob/66cba15/src/BoundingBox.ts#L11)
|
|
98
98
|
|
|
99
99
|
## Methods
|
|
100
100
|
|
|
@@ -114,4 +114,4 @@ ___
|
|
|
114
114
|
|
|
115
115
|
#### Defined in
|
|
116
116
|
|
|
117
|
-
[src/BoundingBox.ts:7](https://github.com/Immugio/three-math-extensions/blob/
|
|
117
|
+
[src/BoundingBox.ts:7](https://github.com/Immugio/three-math-extensions/blob/66cba15/src/BoundingBox.ts#L7)
|