@shapediver/viewer.shared.math 3.17.0 → 3.18.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/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -6
package/dist/index.d.ts
CHANGED
|
@@ -4,5 +4,5 @@ import { Plane } from "./implementation/Plane";
|
|
|
4
4
|
import { Sphere } from "./implementation/Sphere";
|
|
5
5
|
import { Spherical } from "./implementation/Spherical";
|
|
6
6
|
import { Triangle } from "./implementation/Triangle";
|
|
7
|
-
export {
|
|
7
|
+
export { Box, Plane, Sphere, Spherical, Triangle, type IBox, type IGeometry, type IPlane, type ISphere, type ISpherical, type ITriangle, };
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACN,IAAI,EACJ,SAAS,EACT,MAAM,EACN,OAAO,EACP,UAAU,EACV,SAAS,EACT,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAC,GAAG,EAAC,MAAM,sBAAsB,CAAC;AACzC,OAAO,EAAC,KAAK,EAAC,MAAM,wBAAwB,CAAC;AAC7C,OAAO,EAAC,MAAM,EAAC,MAAM,yBAAyB,CAAC;AAC/C,OAAO,EAAC,SAAS,EAAC,MAAM,4BAA4B,CAAC;AACrD,OAAO,EAAC,QAAQ,EAAC,MAAM,2BAA2B,CAAC;AAEnD,OAAO,EACN,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACN,IAAI,EACJ,SAAS,EACT,MAAM,EACN,OAAO,EACP,UAAU,EACV,SAAS,EACT,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAC,GAAG,EAAC,MAAM,sBAAsB,CAAC;AACzC,OAAO,EAAC,KAAK,EAAC,MAAM,wBAAwB,CAAC;AAC7C,OAAO,EAAC,MAAM,EAAC,MAAM,yBAAyB,CAAC;AAC/C,OAAO,EAAC,SAAS,EAAC,MAAM,4BAA4B,CAAC;AACrD,OAAO,EAAC,QAAQ,EAAC,MAAM,2BAA2B,CAAC;AAEnD,OAAO,EACN,GAAG,EACH,KAAK,EACL,MAAM,EACN,SAAS,EACT,QAAQ,EACR,KAAK,IAAI,EACT,KAAK,SAAS,EACd,KAAK,MAAM,EACX,KAAK,OAAO,EACZ,KAAK,UAAU,EACf,KAAK,SAAS,GACd,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Triangle = exports.
|
|
3
|
+
exports.Triangle = exports.Spherical = exports.Sphere = exports.Plane = exports.Box = void 0;
|
|
4
4
|
const Box_1 = require("./implementation/Box");
|
|
5
5
|
Object.defineProperty(exports, "Box", { enumerable: true, get: function () { return Box_1.Box; } });
|
|
6
6
|
const Plane_1 = require("./implementation/Plane");
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAQA,8CAAyC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAQA,8CAAyC;AAOxC,oFAPO,SAAG,OAOP;AANJ,kDAA6C;AAO5C,sFAPO,aAAK,OAOP;AANN,oDAA+C;AAO9C,uFAPO,eAAM,OAOP;AANP,0DAAqD;AAOpD,0FAPO,qBAAS,OAOP;AANV,wDAAmD;AAOlD,yFAPO,mBAAQ,OAOP"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shapediver/viewer.shared.math",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.18.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "Michael Oppitz <michael@shapediver.com>",
|
|
@@ -25,8 +25,7 @@
|
|
|
25
25
|
"scripts": {
|
|
26
26
|
"check": "tsc --noEmit",
|
|
27
27
|
"build": "bash ../../scripts/building/build.sh",
|
|
28
|
-
"build-watch": "bash ../../scripts/building/build-watch.sh"
|
|
29
|
-
"build-dep": "bash ../../scripts/building/build-dep.sh"
|
|
28
|
+
"build-watch": "bash ../../scripts/building/build-watch.sh"
|
|
30
29
|
},
|
|
31
30
|
"bugs": {
|
|
32
31
|
"url": "https://github.com/shapediver/Viewer/issues"
|
|
@@ -38,9 +37,9 @@
|
|
|
38
37
|
"testEnvironment": "node"
|
|
39
38
|
},
|
|
40
39
|
"dependencies": {
|
|
41
|
-
"@shapediver/viewer.shared.services": "3.
|
|
42
|
-
"@shapediver/viewer.shared.types": "3.
|
|
40
|
+
"@shapediver/viewer.shared.services": "3.18.1",
|
|
41
|
+
"@shapediver/viewer.shared.types": "3.18.1",
|
|
43
42
|
"gl-matrix": "3.4.4"
|
|
44
43
|
},
|
|
45
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "c968d0118308a450afd872b729211b3a1fcaf25c"
|
|
46
45
|
}
|