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