@immugio/three-math-extensions 0.2.34 → 0.2.35
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 +7 -1
- package/cjs/index.js +2 -1
- package/esm/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/types/index.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,7 +7,13 @@ 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.35](https://github.com/Immugio/three-math-extensions/compare/0.2.34...0.2.35)
|
|
11
|
+
|
|
12
|
+
### Commits
|
|
13
|
+
|
|
14
|
+
- Export containsPoints [`6214646`](https://github.com/Immugio/three-math-extensions/commit/62146467b9e0350ecd9b6a9839c55ec62b163aa2)
|
|
15
|
+
|
|
16
|
+
## [0.2.34](https://github.com/Immugio/three-math-extensions/compare/0.2.33...0.2.34) - 2024-10-24
|
|
11
17
|
|
|
12
18
|
### Commits
|
|
13
19
|
|
package/cjs/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getPolygonArea = exports.containsPoint = exports.ensurePolygonClockwise = exports.isPolygonClockwise = exports.sortLinesByConnections = exports.extendOrTrimPolylinesAtIntersections = exports.offsetPolyline = exports.polygonPerimeter = exports.isContinuousClosedShape = exports.directions2d = exports.directions = exports.isPointInPolygon = exports.HalfPI = 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.getPolygonArea = exports.containsPoints = exports.containsPoint = exports.ensurePolygonClockwise = exports.isPolygonClockwise = exports.sortLinesByConnections = exports.extendOrTrimPolylinesAtIntersections = exports.offsetPolyline = exports.polygonPerimeter = exports.isContinuousClosedShape = exports.directions2d = exports.directions = exports.isPointInPolygon = exports.HalfPI = 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");
|
|
@@ -46,5 +46,6 @@ var ensurePolygonClockwise_1 = require("./ensurePolygonClockwise");
|
|
|
46
46
|
Object.defineProperty(exports, "ensurePolygonClockwise", { enumerable: true, get: function () { return ensurePolygonClockwise_1.ensurePolygonClockwise; } });
|
|
47
47
|
var containsPoint_1 = require("./containsPoint");
|
|
48
48
|
Object.defineProperty(exports, "containsPoint", { enumerable: true, get: function () { return containsPoint_1.containsPoint; } });
|
|
49
|
+
Object.defineProperty(exports, "containsPoints", { enumerable: true, get: function () { return containsPoint_1.containsPoints; } });
|
|
49
50
|
var getPolygonArea_1 = require("./getPolygonArea");
|
|
50
51
|
Object.defineProperty(exports, "getPolygonArea", { enumerable: true, get: function () { return getPolygonArea_1.getPolygonArea; } });
|
package/esm/index.js
CHANGED
|
@@ -19,5 +19,5 @@ export { extendOrTrimPolylinesAtIntersections } from "./extendOrTrimPolylinesAtI
|
|
|
19
19
|
export { sortLinesByConnections } from "./sortLinesByConnections";
|
|
20
20
|
export { isPolygonClockwise } from "./isPolygonClockwise";
|
|
21
21
|
export { ensurePolygonClockwise } from "./ensurePolygonClockwise";
|
|
22
|
-
export { containsPoint } from "./containsPoint";
|
|
22
|
+
export { containsPoint, containsPoints } from "./containsPoint";
|
|
23
23
|
export { getPolygonArea } from "./getPolygonArea";
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -21,5 +21,5 @@ export { extendOrTrimPolylinesAtIntersections } from "./extendOrTrimPolylinesAtI
|
|
|
21
21
|
export { sortLinesByConnections } from "./sortLinesByConnections";
|
|
22
22
|
export { isPolygonClockwise } from "./isPolygonClockwise";
|
|
23
23
|
export { ensurePolygonClockwise } from "./ensurePolygonClockwise";
|
|
24
|
-
export { containsPoint } from "./containsPoint";
|
|
24
|
+
export { containsPoint, containsPoints } from "./containsPoint";
|
|
25
25
|
export { getPolygonArea } from "./getPolygonArea";
|
package/types/index.d.ts
CHANGED
|
@@ -21,5 +21,5 @@ export { extendOrTrimPolylinesAtIntersections } from "./extendOrTrimPolylinesAtI
|
|
|
21
21
|
export { sortLinesByConnections } from "./sortLinesByConnections";
|
|
22
22
|
export { isPolygonClockwise } from "./isPolygonClockwise";
|
|
23
23
|
export { ensurePolygonClockwise } from "./ensurePolygonClockwise";
|
|
24
|
-
export { containsPoint } from "./containsPoint";
|
|
24
|
+
export { containsPoint, containsPoints } from "./containsPoint";
|
|
25
25
|
export { getPolygonArea } from "./getPolygonArea";
|