@immugio/three-math-extensions 0.1.0 → 0.1.1
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 +9 -2
- package/cjs/index.js +5 -1
- package/esm/index.js +2 -0
- package/package.json +1 -1
- package/src/index.ts +3 -1
- package/types/index.d.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,14 +7,21 @@ 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.1.
|
|
10
|
+
## [0.1.1](https://github.com/Immugio/three-math-extensions/compare/16.15.10...0.1.1)
|
|
11
11
|
|
|
12
12
|
### Commits
|
|
13
13
|
|
|
14
14
|
- Add Polygon [`629cff8`](https://github.com/Immugio/three-math-extensions/commit/629cff8ecbb963477e8ea76d7f8b16d95435cbad)
|
|
15
|
+
- Add Polygon to exports [`ed66775`](https://github.com/Immugio/three-math-extensions/commit/ed66775c33e961835b23843222b822cfd9c16b1d)
|
|
15
16
|
- Vec2.fromPoint and Vec3.fromPoint should accept null [`4b871af`](https://github.com/Immugio/three-math-extensions/commit/4b871af297bdcbe8584f1e2b99d602247b77687c)
|
|
16
17
|
|
|
17
|
-
## [16.15.10](https://github.com/Immugio/three-math-extensions/compare/0.0
|
|
18
|
+
## [16.15.10](https://github.com/Immugio/three-math-extensions/compare/0.1.0...16.15.10) - 2023-01-02
|
|
19
|
+
|
|
20
|
+
## [0.1.0](https://github.com/Immugio/three-math-extensions/compare/0.0.17...0.1.0) - 2023-01-02
|
|
21
|
+
|
|
22
|
+
### Commits
|
|
23
|
+
|
|
24
|
+
- Add Polygon [`629cff8`](https://github.com/Immugio/three-math-extensions/commit/629cff8ecbb963477e8ea76d7f8b16d95435cbad)
|
|
18
25
|
|
|
19
26
|
## [0.0.17](https://github.com/Immugio/three-math-extensions/compare/0.0.16...0.0.17) - 2023-01-02
|
|
20
27
|
|
package/cjs/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Line3D = exports.Line2D = exports.Vec3 = exports.Vec2 = void 0;
|
|
3
|
+
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");
|
|
@@ -9,3 +9,7 @@ var Line2D_1 = require("./Line2D");
|
|
|
9
9
|
Object.defineProperty(exports, "Line2D", { enumerable: true, get: function () { return Line2D_1.Line2D; } });
|
|
10
10
|
var Line3D_1 = require("./Line3D");
|
|
11
11
|
Object.defineProperty(exports, "Line3D", { enumerable: true, get: function () { return Line3D_1.Line3D; } });
|
|
12
|
+
var Size2_1 = require("./Size2");
|
|
13
|
+
Object.defineProperty(exports, "Size2", { enumerable: true, get: function () { return Size2_1.Size2; } });
|
|
14
|
+
var Polygon_1 = require("./Polygon");
|
|
15
|
+
Object.defineProperty(exports, "Polygon", { enumerable: true, get: function () { return Polygon_1.Polygon; } });
|
package/esm/index.js
CHANGED
package/package.json
CHANGED
package/src/index.ts
CHANGED