@jscad/modeling 2.12.6 → 2.13.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/CHANGELOG.md +12 -299
- package/bench/booleans.bench.js +103 -0
- package/bench/primitives.bench.js +108 -0
- package/dist/jscad-modeling.min.js +404 -395
- package/package.json +2 -2
- package/src/geometries/geom3/index.d.ts +1 -0
- package/src/geometries/geom3/index.js +1 -0
- package/src/geometries/geom3/isConvex.d.ts +3 -0
- package/src/geometries/geom3/isConvex.js +68 -0
- package/src/geometries/geom3/isConvex.test.js +45 -0
- package/src/geometries/path2/appendArc.js +1 -1
- package/src/geometries/path2/appendArc.test.js +16 -20
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/operations/booleans/index.d.ts +1 -0
- package/src/operations/booleans/index.js +1 -0
- package/src/operations/booleans/trees/PolygonTreeNode.js +18 -5
- package/src/operations/booleans/trees/splitPolygonByPlane.js +27 -25
- package/src/operations/booleans/trees/splitPolygonByPlane.test.js +132 -0
- package/src/operations/booleans/unionGeom3.test.js +35 -0
- package/src/operations/extrusions/extrudeFromSlices.js +14 -4
- package/src/operations/extrusions/extrudeRectangular.test.js +3 -3
- package/src/operations/extrusions/extrudeRotate.js +4 -1
- package/src/operations/extrusions/extrudeRotate.test.js +33 -0
- package/src/operations/extrusions/extrudeWalls.js +2 -1
- package/src/operations/extrusions/extrudeWalls.test.js +72 -0
- package/src/operations/minkowski/index.d.ts +1 -0
- package/src/operations/minkowski/index.js +17 -0
- package/src/operations/minkowski/minkowskiSum.d.ts +4 -0
- package/src/operations/minkowski/minkowskiSum.js +224 -0
- package/src/operations/minkowski/minkowskiSum.test.js +195 -0
- package/src/operations/modifiers/reTesselateCoplanarPolygons.js +8 -3
- package/src/operations/modifiers/reTesselateCoplanarPolygons.test.js +36 -1
- package/src/operations/modifiers/retessellate.js +5 -2
- package/src/operations/modifiers/snap.test.js +24 -15
- package/src/primitives/arc.js +2 -2
- package/src/primitives/arc.test.js +122 -111
- package/src/utils/flatten.js +1 -1
- package/src/utils/flatten.test.js +94 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,36 +3,38 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
# [2.13.0](https://github.com/jscad/OpenJSCAD/compare/@jscad/modeling@2.12.7...@jscad/modeling@2.13.0) (2026-02-22)
|
|
8
7
|
|
|
9
8
|
### Bug Fixes
|
|
10
9
|
|
|
11
|
-
* **modeling:** corrected
|
|
10
|
+
* **modeling:** corrected number of step calculations in arc and appendArc ([fc2f7c4](https://github.com/jscad/OpenJSCAD/commit/fc2f7c413f36095909bd358603d65c71a0c972f0))
|
|
12
11
|
|
|
12
|
+
### Features
|
|
13
13
|
|
|
14
|
+
* **modeling:** add Minkowski sum operation for 3D geometries ([ff6f608](https://github.com/jscad/OpenJSCAD/commit/ff6f60809b5cca939fc50ff5d9b05dbc9e526cf7))
|
|
14
15
|
|
|
16
|
+
## [2.12.7](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.12.6...@jscad/modeling@2.12.7) (2026-02-11)
|
|
15
17
|
|
|
18
|
+
### Performance Improvements
|
|
16
19
|
|
|
17
|
-
|
|
20
|
+
* **modeling:** improve performance in flatten, splitPolygonByPlane, and extrudeFromSlices ([1a6ef03](https://github.com/jscad/OpenJSCAD.org/commit/1a6ef037e4f7f592b367d046c85076040fd1c092))
|
|
18
21
|
|
|
19
|
-
|
|
22
|
+
## [2.12.6](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.12.5...@jscad/modeling@2.12.6) (2025-09-20)
|
|
20
23
|
|
|
24
|
+
### Bug Fixes
|
|
21
25
|
|
|
26
|
+
* **modeling:** corrected handling of pitch vs height in extrudeHelical ([074f05a](https://github.com/jscad/OpenJSCAD.org/commit/074f05aa5432fbdc8277088e9a45f003f2f978c7))
|
|
22
27
|
|
|
28
|
+
## [2.12.5](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.12.4...@jscad/modeling@2.12.5) (2024-12-29)
|
|
23
29
|
|
|
30
|
+
**Note:** Version bump only for package @jscad/modeling
|
|
24
31
|
|
|
25
32
|
## [2.12.4](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.12.3...@jscad/modeling@2.12.4) (2024-11-10)
|
|
26
33
|
|
|
27
34
|
**Note:** Version bump only for package @jscad/modeling
|
|
28
35
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
36
|
## [2.12.3](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.12.2...@jscad/modeling@2.12.3) (2024-10-06)
|
|
34
37
|
|
|
35
|
-
|
|
36
38
|
### Bug Fixes
|
|
37
39
|
|
|
38
40
|
* **modeling:** added optional plane to poly3 TS definition ([2a3337a](https://github.com/jscad/OpenJSCAD.org/commit/2a3337a4b6d06d9072cb7f193eb0ef8de446c8c0))
|
|
@@ -40,13 +42,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
40
42
|
* **modeling:** corrected TS definition of scission ([ad3d37d](https://github.com/jscad/OpenJSCAD.org/commit/ad3d37d32c308e99141d9ff0d8965e4d1d166123))
|
|
41
43
|
* **modeling:** expose hullPoints2 and hullPoints3 ([01ceae8](https://github.com/jscad/OpenJSCAD.org/commit/01ceae89570dcaf40f9676aadd4ced515e41c291))
|
|
42
44
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
45
|
## [2.12.2](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.12.1...@jscad/modeling@2.12.2) (2024-06-02)
|
|
48
46
|
|
|
49
|
-
|
|
50
47
|
### Bug Fixes
|
|
51
48
|
|
|
52
49
|
* **modeling:** added geom3.fromPointsConvex() ([e1af657](https://github.com/jscad/OpenJSCAD.org/commit/e1af6579498e9bce118d66b47f6cffbb875e9639))
|
|
@@ -55,167 +52,106 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
55
52
|
* **modeling:** created TS definitions for splitPolygonByPlane ([0998e7e](https://github.com/jscad/OpenJSCAD.org/commit/0998e7e933e1583331e20086fb05795bd08df5a6))
|
|
56
53
|
* **typo:** fix typo in rounded error messages ([f6d5286](https://github.com/jscad/OpenJSCAD.org/commit/f6d52860f19587d4fb6d006308d7ad43bf213e0f))
|
|
57
54
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
55
|
## [2.12.1](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.12.0...@jscad/modeling@2.12.1) (2024-02-18)
|
|
63
56
|
|
|
64
|
-
|
|
65
57
|
### Bug Fixes
|
|
66
58
|
|
|
67
59
|
* **modeling:** added fromNoisyPoints() to plane ([1d9efb5](https://github.com/jscad/OpenJSCAD.org/commit/1d9efb506503cde581421f11a6eea9d33f89e4fc))
|
|
68
60
|
* **modeling:** added orientation option to polygon ([6c7be85](https://github.com/jscad/OpenJSCAD.org/commit/6c7be85d7e208a2b100c3bce10380ada8f9d7e32))
|
|
69
61
|
* **modeling:** corrected geom2 mirroring transform ([8b0306e](https://github.com/jscad/OpenJSCAD.org/commit/8b0306e06cc42d1850c137c7221bcc122851f53d))
|
|
70
62
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
63
|
# [2.12.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.11.1...@jscad/modeling@2.12.0) (2023-06-27)
|
|
76
64
|
|
|
77
|
-
|
|
78
65
|
### Bug Fixes
|
|
79
66
|
|
|
80
67
|
* **modeling:** add missing extrudeHelical typing definition ([7f5f8e1](https://github.com/jscad/OpenJSCAD.org/commit/7f5f8e1d777ced7bc4ee5989f895ca06b30bd6d8))
|
|
81
68
|
|
|
82
|
-
|
|
83
69
|
### Features
|
|
84
70
|
|
|
85
71
|
* **modeling:** allow zero size in primitives ([76b7369](https://github.com/jscad/OpenJSCAD.org/commit/76b73690ec2ae8000ab00a19f692569fe3595fe3))
|
|
86
72
|
|
|
87
|
-
|
|
88
73
|
### Performance Improvements
|
|
89
74
|
|
|
90
75
|
* **modeling:** performance improvements for retessellate as part of booleans ([12157ac](https://github.com/jscad/OpenJSCAD.org/commit/12157ac886b714214223074d2f0a413c99da0a29))
|
|
91
76
|
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
77
|
## [2.11.1](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.11.0...@jscad/modeling@2.11.1) (2023-04-30)
|
|
97
78
|
|
|
98
|
-
|
|
99
79
|
### Bug Fixes
|
|
100
80
|
|
|
101
81
|
* **modeling:** arcLengthToT first argument is required ([fc4ceef](https://github.com/jscad/OpenJSCAD.org/commit/fc4ceef607abfcf3c0076155dd69254d19efab0a))
|
|
102
82
|
* **modeling:** export retessellate from modifiers ([fe40aea](https://github.com/jscad/OpenJSCAD.org/commit/fe40aea35af8cde2934e9fea614a6384b1c291c6))
|
|
103
83
|
* **modeling:** fix line2.closestPoint ([4419fe5](https://github.com/jscad/OpenJSCAD.org/commit/4419fe5a9b08f368fb0df91bd20acc3dc3ca7af7))
|
|
104
84
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
85
|
# [2.11.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.10.0...@jscad/modeling@2.11.0) (2022-11-26)
|
|
110
86
|
|
|
111
|
-
|
|
112
87
|
### Bug Fixes
|
|
113
88
|
|
|
114
89
|
* **modeling:** added TS definitions for missing measurement functions ([acf79ca](https://github.com/jscad/OpenJSCAD.org/commit/acf79ca17223e37f49048b9960c9282dfdf72327))
|
|
115
90
|
|
|
116
|
-
|
|
117
91
|
### Features
|
|
118
92
|
|
|
119
93
|
* **modeling:** added extrudeHelical ([#1164](https://github.com/jscad/OpenJSCAD.org/issues/1164)) ([a202bc9](https://github.com/jscad/OpenJSCAD.org/commit/a202bc94e4e79ac1d1034dc0d9d1854ff19de84d))
|
|
120
94
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
95
|
# [2.10.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.9.6...@jscad/modeling@2.10.0) (2022-08-21)
|
|
126
96
|
|
|
127
|
-
|
|
128
97
|
### Bug Fixes
|
|
129
98
|
|
|
130
99
|
* **modeling:** added TS definitions for modifiers ([33ae2c4](https://github.com/jscad/OpenJSCAD.org/commit/33ae2c4c07986218464d30d08147d248c50a8a0b))
|
|
131
100
|
* **modeling:** export modifiers for TypeScript ([#1129](https://github.com/jscad/OpenJSCAD.org/issues/1129)) ([a936675](https://github.com/jscad/OpenJSCAD.org/commit/a93667515922ab99bcd4488f59ee0488dcac6ef4))
|
|
132
101
|
|
|
133
|
-
|
|
134
102
|
### Features
|
|
135
103
|
|
|
136
104
|
* **modeling:** added TAU constant to maths, and refactored code and documentation ([#1128](https://github.com/jscad/OpenJSCAD.org/issues/1128)) ([b8dd700](https://github.com/jscad/OpenJSCAD.org/commit/b8dd700d5641ec27b842dfdf4b6f9403a64084aa))
|
|
137
105
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
106
|
## [2.9.6](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.9.5...@jscad/modeling@2.9.6) (2022-07-17)
|
|
143
107
|
|
|
144
|
-
|
|
145
108
|
### Bug Fixes
|
|
146
109
|
|
|
147
110
|
* **modeling:** corrected concat to prevent modifying original paths ([#1118](https://github.com/jscad/OpenJSCAD.org/issues/1118)) ([ebeaa26](https://github.com/jscad/OpenJSCAD.org/commit/ebeaa26d087646cc6b0f9b927a9230db471a0469))
|
|
148
111
|
|
|
149
|
-
|
|
150
112
|
### Performance Improvements
|
|
151
113
|
|
|
152
114
|
* **modeling:** convert {} objects to Map in insertTjunctions ([#1109](https://github.com/jscad/OpenJSCAD.org/issues/1109)) ([03c7fd1](https://github.com/jscad/OpenJSCAD.org/commit/03c7fd12af53ca025e32d481989563717b8d2137))
|
|
153
115
|
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
116
|
## [2.9.5](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.9.4...@jscad/modeling@2.9.5) (2022-06-12)
|
|
159
117
|
|
|
160
|
-
|
|
161
118
|
### Bug Fixes
|
|
162
119
|
|
|
163
120
|
* **modeling:** use special trig functions for rotations in maths and primitives ([#1090](https://github.com/jscad/OpenJSCAD.org/issues/1090)) ([42c2664](https://github.com/jscad/OpenJSCAD.org/commit/42c2664c088dd3cf1d53dcb26aa79524ac2958db))
|
|
164
121
|
|
|
165
|
-
|
|
166
122
|
### Performance Improvements
|
|
167
123
|
|
|
168
124
|
* **modeling:** optimize poly3.measureBoundingSphere and cache results for performance ([6ad02d5](https://github.com/jscad/OpenJSCAD.org/commit/6ad02d5514ac130b8867d51a090f5745115a278d))
|
|
169
125
|
* **modeling:** replace Math.hypot with faster Math.sqrt()([#1099](https://github.com/jscad/OpenJSCAD.org/issues/1099)) ([1f71c5b](https://github.com/jscad/OpenJSCAD.org/commit/1f71c5b88d4132333458242d3461a91c5e637f88))
|
|
170
126
|
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
127
|
## [2.9.4](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.9.3...@jscad/modeling@2.9.4) (2022-05-15)
|
|
176
128
|
|
|
177
|
-
|
|
178
129
|
### Performance Improvements
|
|
179
130
|
|
|
180
131
|
* **maths:** reworked mat4 isMirror to use pure math, eliminating vec3 creation ([#1088](https://github.com/jscad/OpenJSCAD.org/issues/1088)) ([db4f220](https://github.com/jscad/OpenJSCAD.org/commit/db4f220d000fd08c7e3adab16401a8ea3b06478a))
|
|
181
132
|
* **modeling:** improved performance of reTesselateCoplanarPolygons by using maps or sets ([#1085](https://github.com/jscad/OpenJSCAD.org/issues/1085)) ([fc57103](https://github.com/jscad/OpenJSCAD.org/commit/fc57103f3183781dd3cf97600e9a33386da9a514))
|
|
182
133
|
* **modeling:** use Map instead of {} for slice.repair ([#1083](https://github.com/jscad/OpenJSCAD.org/issues/1083)) ([05d2984](https://github.com/jscad/OpenJSCAD.org/commit/05d29849404193f2e4ed6e945a058aec2b124e3d))
|
|
183
134
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
135
|
## [2.9.3](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.9.2...@jscad/modeling@2.9.3) (2022-04-24)
|
|
189
136
|
|
|
190
|
-
|
|
191
137
|
### Bug Fixes
|
|
192
138
|
|
|
193
139
|
* **modeling:** corrected torus manifolds ([#1046](https://github.com/jscad/OpenJSCAD.org/issues/1046)) ([fe3901f](https://github.com/jscad/OpenJSCAD.org/commit/fe3901fa71d82e2b967021504cac818af04efbb5))
|
|
194
140
|
* **modeling:** removed path2.eachPoint which was broken and unused ([#1069](https://github.com/jscad/OpenJSCAD.org/issues/1069)) ([f704548](https://github.com/jscad/OpenJSCAD.org/commit/f70454813f3373055e97bcc7d47325920ba2d59f))
|
|
195
141
|
* **modeling:** reworked project to correct union of small polygons ([#1058](https://github.com/jscad/OpenJSCAD.org/issues/1058)) ([45d04ac](https://github.com/jscad/OpenJSCAD.org/commit/45d04ac6b1e622d57d08b11370def33755632f51))
|
|
196
142
|
|
|
197
|
-
|
|
198
143
|
### Performance Improvements
|
|
199
144
|
|
|
200
145
|
* **modeling:** changed internals to use geom3.create(), path2.create(), poly3.create() ([#1072](https://github.com/jscad/OpenJSCAD.org/issues/1072)) ([dc4cd15](https://github.com/jscad/OpenJSCAD.org/commit/dc4cd15c28d1d137a935e941c3777389f7c7e391))
|
|
201
146
|
* **modeling:** faster geom2.toOutlines ([#1064](https://github.com/jscad/OpenJSCAD.org/issues/1064)) ([5cb2f65](https://github.com/jscad/OpenJSCAD.org/commit/5cb2f652fa099593e6ec133fe879ecf8a09705e9))
|
|
202
147
|
* **modeling:** performance improvements to mergePolygons and triangulatePolygons ([647ffdf](https://github.com/jscad/OpenJSCAD.org/commit/647ffdf2a726a1daa270717eadde2690b38aebda))
|
|
203
148
|
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
149
|
## [2.9.2](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.9.1...@jscad/modeling@2.9.2) (2022-04-03)
|
|
209
150
|
|
|
210
151
|
**Note:** Version bump only for package @jscad/modeling
|
|
211
152
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
153
|
## [2.9.1](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.9.0...@jscad/modeling@2.9.1) (2022-04-03)
|
|
217
154
|
|
|
218
|
-
|
|
219
155
|
### Bug Fixes
|
|
220
156
|
|
|
221
157
|
* **modeling:** corrected ellipse and ellipsoid manifolds ([#1043](https://github.com/jscad/OpenJSCAD.org/issues/1043)) ([3af3506](https://github.com/jscad/OpenJSCAD.org/commit/3af3506d6830ffe026f01490ded5d704301cb542))
|
|
@@ -223,186 +159,115 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
223
159
|
* **modeling:** fixed areAllShapesTheSameType and add a test ([#1034](https://github.com/jscad/OpenJSCAD.org/issues/1034)) ([c92e9be](https://github.com/jscad/OpenJSCAD.org/commit/c92e9be0fe8696a992e2151a981fc34609c47e7d))
|
|
224
160
|
* **modeling:** fixed cylinder construction, enhanced to support zero radius ([#1039](https://github.com/jscad/OpenJSCAD.org/issues/1039)) ([93f103d](https://github.com/jscad/OpenJSCAD.org/commit/93f103d0aec53618966bffa7fedc355547a6008c))
|
|
225
161
|
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
162
|
# [2.9.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.8.0...@jscad/modeling@2.9.0) (2022-03-13)
|
|
231
163
|
|
|
232
|
-
|
|
233
164
|
### Features
|
|
234
165
|
|
|
235
166
|
* **modeling:** added earcut triangulation algorithm for extrusion caps ([#1021](https://github.com/jscad/OpenJSCAD.org/issues/1021)) ([c7f8ddf](https://github.com/jscad/OpenJSCAD.org/commit/c7f8ddfb34d3ff6a0c8d2c129f2b150c23987f59))
|
|
236
167
|
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
168
|
# [2.8.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.7.2...@jscad/modeling@2.8.0) (2022-03-06)
|
|
242
169
|
|
|
243
|
-
|
|
244
170
|
### Bug Fixes
|
|
245
171
|
|
|
246
172
|
* **modeling:** fixed type of relativeTo in align() options, TS ([#1015](https://github.com/jscad/OpenJSCAD.org/issues/1015)) ([ca4927e](https://github.com/jscad/OpenJSCAD.org/commit/ca4927eb37b21a7c278b46375b788c808d235e77))
|
|
247
173
|
|
|
248
|
-
|
|
249
174
|
### Features
|
|
250
175
|
|
|
251
176
|
* **modeling:** enchanced extrudeLinear to support path2 ([#1009](https://github.com/jscad/OpenJSCAD.org/issues/1009)) ([5a62a6b](https://github.com/jscad/OpenJSCAD.org/commit/5a62a6b9fe4cca9f85ff48be0dc12cdd1323f70a))
|
|
252
177
|
|
|
253
|
-
|
|
254
178
|
### Performance Improvements
|
|
255
179
|
|
|
256
180
|
* **modeling:** improved performace of path2 offsets ([#1013](https://github.com/jscad/OpenJSCAD.org/issues/1013)) ([47f824b](https://github.com/jscad/OpenJSCAD.org/commit/47f824b5abe2b31077a03604ac62f9b14ada64d9))
|
|
257
181
|
* **modeling:** improved performance of expanding geom3, and bug fix ([#1008](https://github.com/jscad/OpenJSCAD.org/issues/1008)) ([d0d035a](https://github.com/jscad/OpenJSCAD.org/commit/d0d035a5d94eaff8de7360fe96e60cc496231eef))
|
|
258
182
|
* **modeling:** use Set to create unique points in hullPath2 ([#1007](https://github.com/jscad/OpenJSCAD.org/issues/1007)) ([bd75a98](https://github.com/jscad/OpenJSCAD.org/commit/bd75a9870d614796a64a25fb874b5e77ad359e6f))
|
|
259
183
|
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
184
|
## [2.7.2](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.7.1...@jscad/modeling@2.7.2) (2022-02-19)
|
|
265
185
|
|
|
266
|
-
|
|
267
186
|
### Performance Improvements
|
|
268
187
|
|
|
269
188
|
* **modeling:** changed geom2.toOutlines to use a map when creating unique edges ([#997](https://github.com/jscad/OpenJSCAD.org/issues/997)) ([338065f](https://github.com/jscad/OpenJSCAD.org/commit/338065fa37041a41e66cbe648ba2080239f3db97))
|
|
270
189
|
* **modeling:** Use hypot instead of sqrt when possible ([#996](https://github.com/jscad/OpenJSCAD.org/issues/996)) ([113c636](https://github.com/jscad/OpenJSCAD.org/commit/113c636b1ac33e351c97789eb6ce0a546365141e))
|
|
271
190
|
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
191
|
## [2.7.1](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.7.0...@jscad/modeling@2.7.1) (2021-12-26)
|
|
277
192
|
|
|
278
|
-
|
|
279
193
|
### Bug Fixes
|
|
280
194
|
|
|
281
195
|
* **modeling:** revert measureBoundingBox to only cache per geometry ([#967](https://github.com/jscad/OpenJSCAD.org/issues/967)) ([b18c02c](https://github.com/jscad/OpenJSCAD.org/commit/b18c02c333b225981a9093caf0593795bc0861ad))
|
|
282
196
|
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
197
|
# [2.7.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.6.1...@jscad/modeling@2.7.0) (2021-12-11)
|
|
288
198
|
|
|
289
|
-
|
|
290
199
|
### Bug Fixes
|
|
291
200
|
|
|
292
201
|
* **modeling:** compute planes from average of all vertex normals ([#953](https://github.com/jscad/OpenJSCAD.org/issues/953)) ([c8a37ad](https://github.com/jscad/OpenJSCAD.org/commit/c8a37ad6430aec8361a5e121730b34629c0d969c))
|
|
293
202
|
|
|
294
|
-
|
|
295
203
|
### Features
|
|
296
204
|
|
|
297
205
|
* **modeling:** new triangle primitive ([#954](https://github.com/jscad/OpenJSCAD.org/issues/954)) ([ce00d7d](https://github.com/jscad/OpenJSCAD.org/commit/ce00d7d4aed364496b7086221af7feae4ffec29c))
|
|
298
206
|
|
|
299
|
-
|
|
300
207
|
### Performance Improvements
|
|
301
208
|
|
|
302
209
|
* **modeling:** improved measureBoundingBox by eliminating allocations ([8abe361](https://github.com/jscad/OpenJSCAD.org/commit/8abe361fc0249ec10e438382353b316aec4644a4))
|
|
303
210
|
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
211
|
## [2.6.1](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.6.0...@jscad/modeling@2.6.1) (2021-11-07)
|
|
309
212
|
|
|
310
|
-
|
|
311
213
|
### Bug Fixes
|
|
312
214
|
|
|
313
215
|
* **modeling:** corrected measureBoundingBox for mirrored shapes ([#946](https://github.com/jscad/OpenJSCAD.org/issues/946)) ([ab2d505](https://github.com/jscad/OpenJSCAD.org/commit/ab2d50595129167a85f330adf286eaa56ae45de5))
|
|
314
216
|
* **modeling:** handle negative area polygons in snapPolygons ([#941](https://github.com/jscad/OpenJSCAD.org/issues/941)) ([971343a](https://github.com/jscad/OpenJSCAD.org/commit/971343ac8ef90701a8dd54a1889f8932bebab5da))
|
|
315
217
|
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
218
|
# [2.6.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.5.3...@jscad/modeling@2.6.0) (2021-10-17)
|
|
321
219
|
|
|
322
|
-
|
|
323
220
|
### Features
|
|
324
221
|
|
|
325
222
|
* **modeling:** add new measurements for BoundingSphere, Center, CenterOfMass, and Dimensions ([#850](https://github.com/jscad/OpenJSCAD.org/issues/850)) ([ad032f4](https://github.com/jscad/OpenJSCAD.org/commit/ad032f49b30055abcbb5464ba4249b5abb5077b2))
|
|
326
223
|
* **modeling:** change geometry transforms to preserve user attributes ([#927](https://github.com/jscad/OpenJSCAD.org/issues/927)) ([a581a02](https://github.com/jscad/OpenJSCAD.org/commit/a581a02afb18a12954ffda806f4d0f04c99fb9ef))
|
|
327
224
|
* **modeling:** Performance improvement for measure bounding box ([#869](https://github.com/jscad/OpenJSCAD.org/issues/869)) ([ee1c7b1](https://github.com/jscad/OpenJSCAD.org/commit/ee1c7b198a6e7a949b3c5d96d11f6537d39629fd))
|
|
328
225
|
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
226
|
## [2.5.3](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.5.2...@jscad/modeling@2.5.3) (2021-10-04)
|
|
334
227
|
|
|
335
|
-
|
|
336
228
|
### Bug Fixes
|
|
337
229
|
|
|
338
230
|
* **modeling:** corrected vec2.rotate, and enhanced test cases ([#918](https://github.com/jscad/OpenJSCAD.org/issues/918)) ([e2bea2d](https://github.com/jscad/OpenJSCAD.org/commit/e2bea2d033462a70eac15bb2b7d4f8674216a7bf))
|
|
339
231
|
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
232
|
## [2.5.2](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.5.1...@jscad/modeling@2.5.2) (2021-09-27)
|
|
345
233
|
|
|
346
|
-
|
|
347
234
|
### Bug Fixes
|
|
348
235
|
|
|
349
236
|
* **modeling:** added exit condition to Node to prevent infinite loops in boolean ops ([#898](https://github.com/jscad/OpenJSCAD.org/issues/898)) ([bf4d6d4](https://github.com/jscad/OpenJSCAD.org/commit/bf4d6d48900aa7e35d00c12cd8d2f15051424956))
|
|
350
237
|
* **modeling:** corrected concat to ignore duplicate points ([#913](https://github.com/jscad/OpenJSCAD.org/issues/913))corrected appendArc to maintain last point ([3eea3ef](https://github.com/jscad/OpenJSCAD.org/commit/3eea3efed3b3d4bacb49c1ee4691bfc159b08261))
|
|
351
238
|
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
239
|
## [2.5.1](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.5.0...@jscad/modeling@2.5.1) (2021-09-09)
|
|
357
240
|
|
|
358
|
-
|
|
359
241
|
### Bug Fixes
|
|
360
242
|
|
|
361
243
|
* **modeling:** corrected CCW determination in 2D hulls ([#897](https://github.com/jscad/OpenJSCAD.org/issues/897)) ([23fe2ac](https://github.com/jscad/OpenJSCAD.org/commit/23fe2ac98fb62ebf6a9bf5a3055e644ffb0e432f)), closes [#114](https://github.com/jscad/OpenJSCAD.org/issues/114)
|
|
362
244
|
* **web:** added open issues and discord community to help ([4ea1196](https://github.com/jscad/OpenJSCAD.org/commit/4ea11966af4b3ecbb5c1a3d53b7ac90c4cd349b1))
|
|
363
245
|
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
246
|
# [2.5.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.4.0...@jscad/modeling@2.5.0) (2021-06-20)
|
|
369
247
|
|
|
370
|
-
|
|
371
248
|
### Features
|
|
372
249
|
|
|
373
250
|
* **modeling:** added mat4.isIdentity() ([c22b7cc](https://github.com/jscad/OpenJSCAD.org/commit/c22b7ccfb64f2769381162f0d442ea0ecff5e8d1))
|
|
374
251
|
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
252
|
# [2.4.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.3.0...@jscad/modeling@2.4.0) (2021-06-11)
|
|
380
253
|
|
|
381
|
-
|
|
382
254
|
### Bug Fixes
|
|
383
255
|
|
|
384
256
|
* **modeling:** corrected snapPolygons to maintain color attributes ([eba8ebc](https://github.com/jscad/OpenJSCAD.org/commit/eba8ebc5b910b7c6d3b8021a26bcc92a73672247))
|
|
385
257
|
* **modeling:** corrected triangulatePolygons to maintain color attributes ([f59958a](https://github.com/jscad/OpenJSCAD.org/commit/f59958a9640c3c81c8f081fab9ec64a592adef44))
|
|
386
258
|
|
|
387
|
-
|
|
388
259
|
### Features
|
|
389
260
|
|
|
390
261
|
* **modeling:** added mat4.invert ([#860](https://github.com/jscad/OpenJSCAD.org/issues/860)) ([3eedab3](https://github.com/jscad/OpenJSCAD.org/commit/3eedab3ba1f8a8f3e909eeeb74dca230af8ac435))
|
|
391
262
|
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
263
|
# [2.3.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.2.0...@jscad/modeling@2.3.0) (2021-06-01)
|
|
397
264
|
|
|
398
|
-
|
|
399
265
|
### Bug Fixes
|
|
400
266
|
|
|
401
267
|
* **modeling:** fixed use of vec3.snap in triangulatePolygons ([c0b82a0](https://github.com/jscad/OpenJSCAD.org/commit/c0b82a0fce4dc69eb152b184a7c36a587fbe4a97))
|
|
402
268
|
* **modeling:** rewrote vec3 orthogonal() to do the correct thing, and adjusted test suites ([f5cb4a3](https://github.com/jscad/OpenJSCAD.org/commit/f5cb4a31bfc331123cf0da95c012b02b7baafcc8))
|
|
403
269
|
* **modeling:** update and correct TypeScript type definitions ([#849](https://github.com/jscad/OpenJSCAD.org/issues/849)) ([6036be7](https://github.com/jscad/OpenJSCAD.org/commit/6036be7586a3f2808f34764baa4195c5edbc6165))
|
|
404
270
|
|
|
405
|
-
|
|
406
271
|
### Features
|
|
407
272
|
|
|
408
273
|
* **modeling:** added aboutEqualNormals() to math utils ([986d402](https://github.com/jscad/OpenJSCAD.org/commit/986d402cff0f857c77ac77995090fbb0da7ecdaf))
|
|
@@ -412,13 +277,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
412
277
|
* **modeling:** new scission() function added to booleans ([#846](https://github.com/jscad/OpenJSCAD.org/issues/846)) ([b8b3bae](https://github.com/jscad/OpenJSCAD.org/commit/b8b3bae0f45301a8c4b80a757331f89e962f86fc))
|
|
413
278
|
* **modeling:** rework math objects to conform with gl-matrix ([#804](https://github.com/jscad/OpenJSCAD.org/issues/804)) ([2e52f10](https://github.com/jscad/OpenJSCAD.org/commit/2e52f104e569f2bb7dd9e1be3d238f471f4d3dfa))
|
|
414
279
|
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
280
|
# [2.2.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.0.0-alpha.0...@jscad/modeling@2.2.0) (2021-04-20)
|
|
420
281
|
|
|
421
|
-
|
|
422
282
|
### Bug Fixes
|
|
423
283
|
|
|
424
284
|
* **all:** V2 : several fixes for modeling ([#705](https://github.com/jscad/OpenJSCAD.org/issues/705)) ([62017a4](https://github.com/jscad/OpenJSCAD.org/commit/62017a41214169d6e000f1e0c11aaefdd68e1097))
|
|
@@ -433,7 +293,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
433
293
|
* **modeling:** V2 - primitives revisited ([#697](https://github.com/jscad/OpenJSCAD.org/issues/697)) ([4721484](https://github.com/jscad/OpenJSCAD.org/commit/47214847b9ea1a144bd0ec595318979199c47dea))
|
|
434
294
|
* **modeling:** V2 revisit modifiers ([#773](https://github.com/jscad/OpenJSCAD.org/issues/773)) ([1e28120](https://github.com/jscad/OpenJSCAD.org/commit/1e28120d2b8505dc1882cf3d607296d6fcd5526d))
|
|
435
295
|
|
|
436
|
-
|
|
437
296
|
### Features
|
|
438
297
|
|
|
439
298
|
* **examples:** examples overhaul for V2 JSCAD ([d73e06f](https://github.com/jscad/OpenJSCAD.org/commit/d73e06f51e187e673487c3d9599672e66ac441d7))
|
|
@@ -443,13 +302,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
443
302
|
* **modeling:** V2 : rename option to align and center ([#775](https://github.com/jscad/OpenJSCAD.org/issues/775)) ([c5b0f48](https://github.com/jscad/OpenJSCAD.org/commit/c5b0f48bbd980b59876d73b673a0e3bef44d2b30))
|
|
444
303
|
* **modeling:** V2 fix extrusions ([#761](https://github.com/jscad/OpenJSCAD.org/issues/761)) ([466910e](https://github.com/jscad/OpenJSCAD.org/commit/466910e7c1a3398065ba2895871c42f35877834a))
|
|
445
304
|
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
305
|
# [2.1.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.0.0-alpha.0...@jscad/modeling@2.1.0) (2021-04-15)
|
|
451
306
|
|
|
452
|
-
|
|
453
307
|
### Bug Fixes
|
|
454
308
|
|
|
455
309
|
* **all:** V2 : several fixes for modeling ([#705](https://github.com/jscad/OpenJSCAD.org/issues/705)) ([62017a4](https://github.com/jscad/OpenJSCAD.org/commit/62017a41214169d6e000f1e0c11aaefdd68e1097))
|
|
@@ -464,7 +318,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
464
318
|
* **modeling:** V2 - primitives revisited ([#697](https://github.com/jscad/OpenJSCAD.org/issues/697)) ([4721484](https://github.com/jscad/OpenJSCAD.org/commit/47214847b9ea1a144bd0ec595318979199c47dea))
|
|
465
319
|
* **modeling:** V2 revisit modifiers ([#773](https://github.com/jscad/OpenJSCAD.org/issues/773)) ([1e28120](https://github.com/jscad/OpenJSCAD.org/commit/1e28120d2b8505dc1882cf3d607296d6fcd5526d))
|
|
466
320
|
|
|
467
|
-
|
|
468
321
|
### Features
|
|
469
322
|
|
|
470
323
|
* **examples:** examples overhaul for V2 JSCAD ([d73e06f](https://github.com/jscad/OpenJSCAD.org/commit/d73e06f51e187e673487c3d9599672e66ac441d7))
|
|
@@ -474,153 +327,88 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
474
327
|
* **modeling:** V2 : rename option to align and center ([#775](https://github.com/jscad/OpenJSCAD.org/issues/775)) ([c5b0f48](https://github.com/jscad/OpenJSCAD.org/commit/c5b0f48bbd980b59876d73b673a0e3bef44d2b30))
|
|
475
328
|
* **modeling:** V2 fix extrusions ([#761](https://github.com/jscad/OpenJSCAD.org/issues/761)) ([466910e](https://github.com/jscad/OpenJSCAD.org/commit/466910e7c1a3398065ba2895871c42f35877834a))
|
|
476
329
|
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
330
|
# [2.0.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.0.0-alpha.11...@jscad/modeling@2.0.0) (2021-04-12)
|
|
482
331
|
|
|
483
332
|
**Note:** Version bump only for package @jscad/modeling
|
|
484
333
|
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
334
|
# [2.0.0-alpha.11](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.0.0-alpha.10...@jscad/modeling@2.0.0-alpha.11) (2021-03-07)
|
|
490
335
|
|
|
491
|
-
|
|
492
336
|
### Bug Fixes
|
|
493
337
|
|
|
494
338
|
* **modeling:** V2 revisit modifiers ([#773](https://github.com/jscad/OpenJSCAD.org/issues/773)) ([1e28120](https://github.com/jscad/OpenJSCAD.org/commit/1e28120d2b8505dc1882cf3d607296d6fcd5526d))
|
|
495
339
|
|
|
496
|
-
|
|
497
340
|
### Features
|
|
498
341
|
|
|
499
342
|
* **modeling:** V2 : rename option to align and center ([#775](https://github.com/jscad/OpenJSCAD.org/issues/775)) ([c5b0f48](https://github.com/jscad/OpenJSCAD.org/commit/c5b0f48bbd980b59876d73b673a0e3bef44d2b30))
|
|
500
343
|
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
344
|
# [2.0.0-alpha.10](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.0.0-alpha.9...@jscad/modeling@2.0.0-alpha.10) (2021-02-07)
|
|
506
345
|
|
|
507
|
-
|
|
508
346
|
### Features
|
|
509
347
|
|
|
510
348
|
* **modeling:** adding new class of operations to modeling; modifiers ([#743](https://github.com/jscad/OpenJSCAD.org/issues/743)) ([9e20303](https://github.com/jscad/OpenJSCAD.org/commit/9e20303255fb10bf11251dbefffa6b8c1dad9b49))
|
|
511
349
|
* **modeling:** enhanced options to extrudeFromSlices ([#761](https://github.com/jscad/OpenJSCAD.org/issues/761)) ([466910e](https://github.com/jscad/OpenJSCAD.org/commit/466910e7c1a3398065ba2895871c42f35877834a))
|
|
512
350
|
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
351
|
# [2.0.0-alpha.9](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.0.0-alpha.8...@jscad/modeling@2.0.0-alpha.9) (2021-01-02)
|
|
518
352
|
|
|
519
|
-
|
|
520
353
|
### Bug Fixes
|
|
521
354
|
|
|
522
355
|
* **core,modeling:** V2 fix extrude ([#751](https://github.com/jscad/OpenJSCAD.org/issues/751)) ([767b6fc](https://github.com/jscad/OpenJSCAD.org/commit/767b6fc13a24b6203248c197210645e5b7cebc28))
|
|
523
356
|
* **modeling:** re-implemented poly2.isPointInside to correct issues ([#741](https://github.com/jscad/OpenJSCAD.org/issues/741)) ([4266c8f](https://github.com/jscad/OpenJSCAD.org/commit/4266c8f623f3de9f8c8a5999647e654c8d5aaf31))
|
|
524
357
|
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
358
|
# [2.0.0-alpha.8](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.0.0-alpha.7...@jscad/modeling@2.0.0-alpha.8) (2020-12-04)
|
|
530
359
|
|
|
531
360
|
**Note:** Version bump only for package @jscad/modeling
|
|
532
361
|
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
362
|
# [2.0.0-alpha.7](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/modeling@2.0.0-alpha.6...@jscad/modeling@2.0.0-alpha.7) (2020-11-07)
|
|
538
363
|
|
|
539
|
-
|
|
540
364
|
### Bug Fixes
|
|
541
365
|
|
|
542
366
|
* **modeling:** fix extrude rotate ([#727](https://github.com/jscad/OpenJSCAD.org/issues/727)) ([13de037](https://github.com/jscad/OpenJSCAD.org/commit/13de03788336ac5c2e00818fadd631bc8aadc523))
|
|
543
367
|
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
368
|
# [2.0.0-alpha.6](https://github.com/jscad/openjscad.org/compare/@jscad/modeling@2.0.0-alpha.5...@jscad/modeling@2.0.0-alpha.6) (2020-10-11)
|
|
549
369
|
|
|
550
|
-
|
|
551
370
|
### Bug Fixes
|
|
552
371
|
|
|
553
372
|
* **all:** V2 : several fixes for modeling ([#705](https://github.com/jscad/openjscad.org/issues/705)) ([62017a4](https://github.com/jscad/openjscad.org/commit/62017a41214169d6e000f1e0c11aaefdd68e1097))
|
|
554
373
|
* **core:** Remove connectors from public api ([#703](https://github.com/jscad/openjscad.org/issues/703)) ([a3bf8a4](https://github.com/jscad/openjscad.org/commit/a3bf8a42e7ccf2204351da4a4acff55c2d6acad6))
|
|
555
374
|
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
375
|
# [2.0.0-alpha.5](https://github.com/jscad/openjscad.org/compare/@jscad/modeling@2.0.0-alpha.4...@jscad/modeling@2.0.0-alpha.5) (2020-09-29)
|
|
561
376
|
|
|
562
|
-
|
|
563
377
|
### Bug Fixes
|
|
564
378
|
|
|
565
379
|
* **modeling:** V2 - primitives revisited ([#697](https://github.com/jscad/openjscad.org/issues/697)) ([4721484](https://github.com/jscad/openjscad.org/commit/47214847b9ea1a144bd0ec595318979199c47dea))
|
|
566
380
|
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
381
|
# [2.0.0-alpha.4](https://github.com/jscad/openjscad.org/compare/@jscad/modeling@2.0.0-alpha.3...@jscad/modeling@2.0.0-alpha.4) (2020-09-28)
|
|
572
382
|
|
|
573
|
-
|
|
574
383
|
### Features
|
|
575
384
|
|
|
576
385
|
* **modeling:** added aggregate functions for area, volume, epsilon measurements ([cf558bb](https://github.com/jscad/openjscad.org/commit/cf558bb7d0df1ab4562fda022a8db2c4216d7514))
|
|
577
386
|
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
387
|
# [2.0.0-alpha.3](https://github.com/jscad/openjscad.org/compare/@jscad/modeling@2.0.0-alpha.2...@jscad/modeling@2.0.0-alpha.3) (2020-09-19)
|
|
583
388
|
|
|
584
|
-
|
|
585
389
|
### Features
|
|
586
390
|
|
|
587
391
|
* **modeling:** add align() and measureAggregateBoundingBox() functions ([72df65c](https://github.com/jscad/openjscad.org/commit/72df65cfec065f26a84a8bb1ff80f5750a9972bf))
|
|
588
392
|
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
393
|
# [2.0.0-alpha.2](https://github.com/jscad/openjscad.org/compare/@jscad/modeling@2.0.0-alpha.1...@jscad/modeling@2.0.0-alpha.2) (2020-09-08)
|
|
594
394
|
|
|
595
|
-
|
|
596
395
|
### Bug Fixes
|
|
597
396
|
|
|
598
397
|
* **modeling:** Adding & improving tests, docs, removing some equals() ([1f3724b](https://github.com/jscad/openjscad.org/commit/1f3724b7cb9c8afd5ddc61587de506dbac93125e))
|
|
599
398
|
* **modeling:** fix torus offset when outerRotation is supplied ([f7b3a2a](https://github.com/jscad/openjscad.org/commit/f7b3a2a9adfee91ecc2be1661883f5f17264a798))
|
|
600
399
|
|
|
601
|
-
|
|
602
400
|
### Features
|
|
603
401
|
|
|
604
402
|
* **examples:** examples overhaul for V2 JSCAD ([d73e06f](https://github.com/jscad/openjscad.org/commit/d73e06f51e187e673487c3d9599672e66ac441d7))
|
|
605
403
|
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
404
|
# [2.0.0-alpha.1](https://github.com/jscad/openjscad.org/compare/@jscad/modeling@2.0.0-alpha.0...@jscad/modeling@2.0.0-alpha.1) (2020-08-19)
|
|
611
405
|
|
|
612
|
-
|
|
613
406
|
### Bug Fixes
|
|
614
407
|
|
|
615
408
|
* **modeling:** ensure extrude rectangular expand produces shapes with positive area ([43ce5dd](https://github.com/jscad/openjscad.org/commit/43ce5dd4341935966ed976ce16cb5a7e452becc2))
|
|
616
409
|
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
410
|
# 2.0.0-alpha.0 (2020-08-13)
|
|
622
411
|
|
|
623
|
-
|
|
624
412
|
### Bug Fixes
|
|
625
413
|
|
|
626
414
|
* **booleans:** corrected fromFakePolygons to ignore 0 length sides ([#552](https://github.com/jscad/openjscad.org/issues/552)) ([a44650b](https://github.com/jscad/openjscad.org/commit/a44650b2ce471b44ae2a40f4debddbc47e8d8c34))
|
|
@@ -638,7 +426,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
638
426
|
* **utils:** exposed additional user utility functions
|
|
639
427
|
* **geometries:** corrected order of transforms in geom2, geom3, and path2
|
|
640
428
|
|
|
641
|
-
|
|
642
429
|
### Features
|
|
643
430
|
|
|
644
431
|
* **modeling:** merge csg.js into main repo (#482)
|
|
@@ -656,233 +443,159 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
656
443
|
* **modeling:** moved measurements out of operations
|
|
657
444
|
* **modeling:** adding curves/bezier object for curve-based easing and…
|
|
658
445
|
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
446
|
<a name="0.6.0"></a>
|
|
664
447
|
# [0.6.0](https://github.com/jscad/csg.js/compare/v0.5.4...v0.6.0) (2018-06-21)
|
|
665
448
|
|
|
666
|
-
|
|
667
449
|
### Bug Fixes
|
|
668
450
|
|
|
669
451
|
* **2d shape factories:** fix fromNestedPointsArray([#103](https://github.com/jscad/csg.js/issues/103)) ([729d459](https://github.com/jscad/csg.js/commit/729d459))
|
|
670
452
|
* **polygon:** params custom paths ([#104](https://github.com/jscad/csg.js/issues/104)) ([7d93db8](https://github.com/jscad/csg.js/commit/7d93db8))
|
|
671
453
|
|
|
672
|
-
|
|
673
454
|
### Features
|
|
674
455
|
|
|
675
456
|
* **2d polygons:** add support for polygons (2D) with holes([#101](https://github.com/jscad/csg.js/issues/101)) ([22f8f80](https://github.com/jscad/csg.js/commit/22f8f80))
|
|
676
457
|
* **vector_text/char:** big overhaul & additions to the vector_text/ char system ([#107](https://github.com/jscad/csg.js/issues/107)) ([eadcd58](https://github.com/jscad/csg.js/commit/eadcd58))
|
|
677
458
|
|
|
678
|
-
|
|
679
|
-
|
|
680
459
|
<a name="0.5.4"></a>
|
|
681
460
|
## [0.5.4](https://github.com/jscad/csg.js/compare/v0.5.3...v0.5.4) (2018-03-16)
|
|
682
461
|
|
|
683
|
-
|
|
684
462
|
### Bug Fixes
|
|
685
463
|
|
|
686
464
|
* **center:** Correcting center() functionality ([#97](https://github.com/jscad/csg.js/issues/97)) ([52e792d](https://github.com/jscad/csg.js/commit/52e792d))
|
|
687
465
|
|
|
688
|
-
|
|
689
|
-
|
|
690
466
|
<a name="0.5.3"></a>
|
|
691
467
|
## [0.5.3](https://github.com/jscad/csg.js/compare/v0.5.2...v0.5.3) (2018-02-13)
|
|
692
468
|
|
|
693
|
-
|
|
694
|
-
|
|
695
469
|
<a name="0.5.2"></a>
|
|
696
470
|
## [0.5.2](https://github.com/jscad/csg.js/compare/v0.5.1...v0.5.2) (2018-01-29)
|
|
697
471
|
|
|
698
|
-
|
|
699
472
|
### Bug Fixes
|
|
700
473
|
|
|
701
474
|
* **rotate:** fixing angle-axis style rotation ([#90](https://github.com/jscad/csg.js/issues/90)) ([6c28c1c](https://github.com/jscad/csg.js/commit/6c28c1c))
|
|
702
475
|
|
|
703
|
-
|
|
704
|
-
|
|
705
476
|
<a name="0.5.1"></a>
|
|
706
477
|
## [0.5.1](https://github.com/jscad/csg.js/compare/v0.5.0...v0.5.1) (2018-01-29)
|
|
707
478
|
|
|
708
|
-
|
|
709
479
|
### Bug Fixes
|
|
710
480
|
|
|
711
481
|
* **CAG:** added back missing CAG.fromCompactBinary ([#91](https://github.com/jscad/csg.js/issues/91)) ([57e8f5d](https://github.com/jscad/csg.js/commit/57e8f5d))
|
|
712
482
|
|
|
713
|
-
|
|
714
|
-
|
|
715
483
|
<a name="0.5.0"></a>
|
|
716
484
|
# [0.5.0](https://github.com/jscad/csg.js/compare/v0.4.1...v0.5.0) (2018-01-19)
|
|
717
485
|
|
|
718
|
-
|
|
719
|
-
|
|
720
486
|
<a name="0.4.1"></a>
|
|
721
487
|
## [0.4.1](https://github.com/jscad/csg.js/compare/v0.4.0...v0.4.1) (2018-01-19)
|
|
722
488
|
|
|
723
|
-
|
|
724
|
-
|
|
725
489
|
<a name="0.4.0"></a>
|
|
726
490
|
# [0.4.0](https://github.com/jscad/csg.js/compare/v0.3.8...v0.4.0) (2018-01-05)
|
|
727
491
|
|
|
728
|
-
|
|
729
492
|
### Bug Fixes
|
|
730
493
|
|
|
731
494
|
* **docstring:** fixed a few bad docstrings which prevented docs from being generated ([#76](https://github.com/jscad/csg.js/issues/76)) ([441fd18](https://github.com/jscad/csg.js/commit/441fd18))
|
|
732
495
|
|
|
733
|
-
|
|
734
|
-
|
|
735
496
|
<a name="0.3.8"></a>
|
|
736
497
|
## [0.3.8](https://github.com/jscad/csg.js/compare/v0.3.7...v0.3.8) (2018-01-04)
|
|
737
498
|
|
|
738
|
-
|
|
739
499
|
### Bug Fixes
|
|
740
500
|
|
|
741
501
|
* **shared object:** support shared objects without color ([#74](https://github.com/jscad/csg.js/issues/74)) ([f90ad50](https://github.com/jscad/csg.js/commit/f90ad50))
|
|
742
502
|
|
|
743
|
-
|
|
744
|
-
|
|
745
503
|
<a name="0.3.7"></a>
|
|
746
504
|
## [0.3.7](https://github.com/jscad/csg.js/compare/v0.3.6...v0.3.7) (2017-11-13)
|
|
747
505
|
|
|
748
|
-
|
|
749
|
-
|
|
750
506
|
<a name="0.3.6"></a>
|
|
751
507
|
## [0.3.6](https://github.com/jscad/csg.js/compare/v0.3.5...v0.3.6) (2017-11-03)
|
|
752
508
|
|
|
753
|
-
|
|
754
|
-
|
|
755
509
|
<a name="0.3.5"></a>
|
|
756
510
|
## [0.3.5](https://github.com/jscad/csg.js/compare/v0.3.4...v0.3.5) (2017-11-03)
|
|
757
511
|
|
|
758
|
-
|
|
759
512
|
### Bug Fixes
|
|
760
513
|
|
|
761
514
|
* **fixTJunctions:** fixes issues with fixTJunctions ([#63](https://github.com/jscad/csg.js/issues/63)) ([78c5102](https://github.com/jscad/csg.js/commit/78c5102))
|
|
762
515
|
|
|
763
|
-
|
|
764
|
-
|
|
765
516
|
<a name="0.3.4"></a>
|
|
766
517
|
## [0.3.4](https://github.com/jscad/csg.js/compare/v0.3.3...v0.3.4) (2017-11-01)
|
|
767
518
|
|
|
768
|
-
|
|
769
519
|
### Bug Fixes
|
|
770
520
|
|
|
771
521
|
* **ConnectorsList:** add back missing ConnectorsList ([#62](https://github.com/jscad/csg.js/issues/62)) ([cfc1c7e](https://github.com/jscad/csg.js/commit/cfc1c7e))
|
|
772
522
|
|
|
773
|
-
|
|
774
|
-
|
|
775
523
|
<a name="0.3.3"></a>
|
|
776
524
|
## [0.3.3](https://github.com/jscad/csg.js/compare/v0.3.2...v0.3.3) (2017-11-01)
|
|
777
525
|
|
|
778
|
-
|
|
779
|
-
|
|
780
526
|
<a name="0.3.2"></a>
|
|
781
527
|
## [0.3.2](https://github.com/jscad/csg.js/compare/v0.3.1...v0.3.2) (2017-10-28)
|
|
782
528
|
|
|
783
|
-
|
|
784
529
|
### Bug Fixes
|
|
785
530
|
|
|
786
531
|
* **path2D:** added missing innerToCAG method to path2D proto & added tests & docs ([#52](https://github.com/jscad/csg.js/issues/52)) ([4a5e37e](https://github.com/jscad/csg.js/commit/4a5e37e))
|
|
787
532
|
|
|
788
|
-
|
|
789
|
-
|
|
790
533
|
<a name="0.3.1"></a>
|
|
791
534
|
## [0.3.1](https://github.com/jscad/csg.js/compare/v0.3.0...v0.3.1) (2017-06-11)
|
|
792
535
|
|
|
793
|
-
|
|
794
|
-
|
|
795
536
|
<a name="0.3.0"></a>
|
|
796
537
|
# [0.3.0](https://github.com/jscad/csg.js/compare/v0.2.4...v0.3.0) (2017-05-30)
|
|
797
538
|
|
|
798
|
-
|
|
799
539
|
### Features
|
|
800
540
|
|
|
801
541
|
* **CAG.toPoints:** CAG Enhancement for toPoints() ([d023243](https://github.com/jscad/csg.js/commit/d023243))
|
|
802
542
|
|
|
803
|
-
|
|
804
|
-
|
|
805
543
|
<a name="0.2.4"></a>
|
|
806
544
|
## [0.2.4](https://github.com/jscad/csg.js/compare/v0.2.3...v0.2.4) (2017-05-20)
|
|
807
545
|
|
|
808
|
-
|
|
809
546
|
### Bug Fixes
|
|
810
547
|
|
|
811
548
|
* **CAG:** reverted back CAG to default to canonicalized = false ([68a0558](https://github.com/jscad/csg.js/commit/68a0558))
|
|
812
549
|
|
|
813
|
-
|
|
814
|
-
|
|
815
550
|
<a name="0.2.3"></a>
|
|
816
551
|
## [0.2.3](https://github.com/jscad/csg.js/compare/v0.2.2...v0.2.3) (2017-05-19)
|
|
817
552
|
|
|
818
|
-
|
|
819
|
-
|
|
820
553
|
<a name="0.2.2"></a>
|
|
821
554
|
## [0.2.2](https://github.com/jscad/csg.js/compare/v0.2.1...v0.2.2) (2017-05-19)
|
|
822
555
|
|
|
823
|
-
|
|
824
|
-
|
|
825
556
|
<a name="0.2.1"></a>
|
|
826
557
|
## [0.2.1](https://github.com/jscad/csg.js/compare/v0.2.0...v0.2.1) (2017-04-27)
|
|
827
558
|
|
|
828
|
-
|
|
829
|
-
|
|
830
559
|
<a name="0.2.0"></a>
|
|
831
560
|
# [0.2.0](https://github.com/jscad/csg.js/compare/v0.1.4...v0.2.0) (2017-04-27)
|
|
832
561
|
|
|
833
|
-
|
|
834
562
|
### Bug Fixes
|
|
835
563
|
|
|
836
564
|
* **asserts:** fixed issue with asserts in latest ava ([1210f66](https://github.com/jscad/csg.js/commit/1210f66))
|
|
837
565
|
|
|
838
|
-
|
|
839
|
-
|
|
840
566
|
<a name="0.1.4"></a>
|
|
841
567
|
## [0.1.4](https://github.com/jscad/csg.js/compare/v0.1.3...v0.1.4) (2017-01-27)
|
|
842
568
|
|
|
843
|
-
|
|
844
569
|
### Bug Fixes
|
|
845
570
|
|
|
846
571
|
* **README:** more attempts at fixing README on npm ... ([a5ae096](https://github.com/jscad/csg.js/commit/a5ae096))
|
|
847
572
|
|
|
848
|
-
|
|
849
|
-
|
|
850
573
|
<a name="0.1.3"></a>
|
|
851
574
|
## [0.1.3](https://github.com/jscad/csg.js/compare/v0.1.2...v0.1.3) (2017-01-27)
|
|
852
575
|
|
|
853
|
-
|
|
854
|
-
|
|
855
576
|
<a name="0.1.2"></a>
|
|
856
577
|
## [0.1.2](https://github.com/jscad/csg.js/compare/v0.1.1...v0.1.2) (2017-01-27)
|
|
857
578
|
|
|
858
|
-
|
|
859
579
|
### Bug Fixes
|
|
860
580
|
|
|
861
581
|
* **typo:** fixed typo in package name ([4f2aec6](https://github.com/jscad/csg.js/commit/4f2aec6))
|
|
862
582
|
|
|
863
|
-
|
|
864
|
-
|
|
865
583
|
<a name="0.1.1"></a>
|
|
866
584
|
## [0.1.1](https://github.com/jscad/csg.js/compare/v0.1.0...v0.1.1) (2017-01-27)
|
|
867
585
|
|
|
868
|
-
|
|
869
586
|
### Bug Fixes
|
|
870
587
|
|
|
871
588
|
* **babelrc:** added missing babelrc ([94f9684](https://github.com/jscad/csg.js/commit/94f9684))
|
|
872
589
|
* **package:** removed part of package relevant to 'builds' ([7bf4815](https://github.com/jscad/csg.js/commit/7bf4815))
|
|
873
590
|
|
|
874
|
-
|
|
875
|
-
|
|
876
591
|
<a name="0.1.0"></a>
|
|
877
592
|
# [0.1.0](https://github.com/jscad/csg.js/compare/af6453c...v0.1.0) (2017-01-16)
|
|
878
593
|
|
|
879
|
-
|
|
880
594
|
### Bug Fixes
|
|
881
595
|
|
|
882
596
|
* bools fail if cylinder resolution not integer. Solution: parse all resolution as int ([af6453c](https://github.com/jscad/csg.js/commit/af6453c))
|
|
883
597
|
* **package:** fixed package name ([cbba148](https://github.com/jscad/csg.js/commit/cbba148))
|
|
884
598
|
|
|
885
|
-
|
|
886
599
|
### Features
|
|
887
600
|
|
|
888
601
|
* **csg.js:** updated csg.js based on recent changes in OpenjSCAD.org ([db1d133](https://github.com/jscad/csg.js/commit/db1d133))
|