@jwc/jscad-utils 4.8.4 → 5.0.0
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/README.md +4 -4
- package/dist/compat.js +659 -841
- package/dist/examples/bisect.jscad +342 -658
- package/dist/examples/boxes.jscad +342 -658
- package/dist/examples/chamfer.jscad +342 -658
- package/dist/examples/fillet.jscad +342 -658
- package/dist/examples/fit.jscad +342 -658
- package/dist/examples/groups.jscad +342 -658
- package/dist/examples/midlineTo.jscad +342 -658
- package/dist/examples/parts-hexagon.jscad +342 -658
- package/dist/examples/rabett-tb.jscad +342 -658
- package/dist/examples/rabett.jscad +342 -658
- package/dist/examples/rabett2.jscad +342 -658
- package/dist/examples/retraction-test.jscad +342 -658
- package/dist/examples/size.jscad +342 -658
- package/dist/examples/snap.jscad +342 -658
- package/dist/examples/text.jscad +342 -658
- package/dist/examples/wedge.jscad +342 -658
- package/dist/index.js +659 -841
- package/package.json +16 -52
- package/src/add-prototype.js +87 -7
- package/src/boxes.js +1 -1
- package/src/color.js +36 -46
- package/src/util.js +35 -33
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
[](https://www.npmjs.org/package/@jwc/jscad-utils)
|
|
10
10
|
|
|
11
|
-
](https://bsky.app/profile/jwc.dev)
|
|
12
12
|
|
|
13
13
|
# jscad-utils
|
|
14
14
|
|
|
@@ -22,7 +22,7 @@ project that uses this library.
|
|
|
22
22
|
|
|
23
23
|
I'm currently updating `jscad-utils` to work with the new JsCad v2. The code base has moved to ES6, built with Rollup
|
|
24
24
|
and has some unit tests. There is a v1 compatibility file for continued use with JsCad 1.9.x. The examples work with the
|
|
25
|
-
|
|
25
|
+
compatibility shim and 1.9.
|
|
26
26
|
|
|
27
27
|
I still need to get the documentation to build again and upgrade the other libraries and yeoman generator.
|
|
28
28
|
|
|
@@ -38,12 +38,12 @@ npm install @jwc/jscad-utils
|
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
If you are using a recent yoeman generated project, it should pick up the new version. If you are using any of the other
|
|
41
|
-
jscad-\* libraries, be careful, they are having issues until I update them to ES6, stick to the v3
|
|
41
|
+
jscad-\* libraries, be careful, they are having issues until I update them to ES6, stick to the v3 until they are
|
|
42
42
|
updated.
|
|
43
43
|
|
|
44
44
|
## Installation
|
|
45
45
|
|
|
46
|
-
You will need [Node.js](https://nodejs.org) version 6.4 installed. Other versions will
|
|
46
|
+
You will need [Node.js](https://nodejs.org) version 6.4 installed. Other versions will probably work, but that's what
|
|
47
47
|
it's tested with. Install `jscad-utils` using NPM:
|
|
48
48
|
|
|
49
49
|
```bash
|