@jwc/jscad-utils 5.0.0 → 5.0.2
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/compat.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +5 -5
- package/src/boxes.js +1 -1
package/dist/compat.js
CHANGED
|
@@ -2956,7 +2956,7 @@ properties: "${Object.keys(o.properties)}"
|
|
|
2956
2956
|
};
|
|
2957
2957
|
|
|
2958
2958
|
/**
|
|
2959
|
-
* Create a box that
|
|
2959
|
+
* Create a box that surrounds the object.
|
|
2960
2960
|
* @param {CSG} o The object to create a bounding box for.
|
|
2961
2961
|
* @return {CSG} The bounding box aligned with the object.
|
|
2962
2962
|
* @deprecated use parts.BBox
|
package/dist/index.js
CHANGED
|
@@ -2914,7 +2914,7 @@ properties: "${Object.keys(o.properties)}"
|
|
|
2914
2914
|
};
|
|
2915
2915
|
|
|
2916
2916
|
/**
|
|
2917
|
-
* Create a box that
|
|
2917
|
+
* Create a box that surrounds the object.
|
|
2918
2918
|
* @param {CSG} o The object to create a bounding box for.
|
|
2919
2919
|
* @return {CSG} The bounding box aligned with the object.
|
|
2920
2920
|
* @deprecated use parts.BBox
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jwc/jscad-utils",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.2",
|
|
4
4
|
"description": "Utilities for use in a jscad script.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -37,17 +37,17 @@
|
|
|
37
37
|
"@jwc/jscad2-regl-renderer": "3.0.0",
|
|
38
38
|
"gl": "8.1.6",
|
|
39
39
|
"vitepress": "1.6.4",
|
|
40
|
-
"vitest": "
|
|
40
|
+
"vitest": "4.0.16"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@rollup/plugin-babel": "6.0
|
|
44
|
-
"@rollup/plugin-node-resolve": "16.0.
|
|
43
|
+
"@rollup/plugin-babel": "6.1.0",
|
|
44
|
+
"@rollup/plugin-node-resolve": "16.0.3",
|
|
45
45
|
"gulp": "5.0.1",
|
|
46
46
|
"gulp-debug": "5.0.1",
|
|
47
47
|
"gulp-eslint": "6.0.0",
|
|
48
48
|
"gulp-inject": "5.0.5",
|
|
49
49
|
"gulp-plumber": "1.2.1",
|
|
50
50
|
"gulp-terser": "2.1.0",
|
|
51
|
-
"rollup": "4.
|
|
51
|
+
"rollup": "4.55.1"
|
|
52
52
|
}
|
|
53
53
|
}
|
package/src/boxes.js
CHANGED
|
@@ -332,7 +332,7 @@ export const Hollow = function (object, thickness, interiorcb, exteriorcb) {
|
|
|
332
332
|
};
|
|
333
333
|
|
|
334
334
|
/**
|
|
335
|
-
* Create a box that
|
|
335
|
+
* Create a box that surrounds the object.
|
|
336
336
|
* @param {CSG} o The object to create a bounding box for.
|
|
337
337
|
* @return {CSG} The bounding box aligned with the object.
|
|
338
338
|
* @deprecated use parts.BBox
|