brep-io-kernel 1.0.97 → 1.0.99
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-kernel/brep-kernel.js +24918 -23977
- package/package.json +1 -1
- package/src/BREP/SolidMethods/booleanOps.js +20 -4
- package/src/UI/sketcher/SketchMode3D.js +157 -33
- package/src/UI/sketcher/dimensions.js +59 -0
- package/src/UI/sketcher/glyphs.js +31 -0
- package/src/UI/sketcher/highlights.js +3 -1
- package/src/features/hole/HoleFeature.js +264 -17
- package/src/features/sketch/SketchFeature.js +117 -12
- package/src/features/sketch/sketchSolver2D/ConstraintEngine.js +42 -7
- package/src/features/sketch/sketchSolver2D/constraintDefinitions.js +104 -0
- package/src/tests/fixtures/sketchSolverTopology/README.md +46 -0
- package/src/tests/fixtures/sketchSolverTopology/coincident_chain_fixture.json +48 -0
- package/src/tests/fixtures/sketchSolverTopology/rect_width_height_fixture.json +43 -0
- package/src/tests/fixtures/sketchSolverTopology/sketch_throttel_expression_sequence_fixture.json +25 -0
- package/src/tests/partFiles/sketch_throttel_testing.BREP.json +562 -0
- package/src/tests/sketchSolverTopologyFixtureLoader.js +308 -0
- package/src/tests/test_sketch_solver_topology_stability.js +348 -0
- package/src/tests/tests.js +17 -0
|
@@ -0,0 +1,562 @@
|
|
|
1
|
+
{
|
|
2
|
+
"features": [
|
|
3
|
+
{
|
|
4
|
+
"type": "S",
|
|
5
|
+
"inputParams": {
|
|
6
|
+
"id": "S1",
|
|
7
|
+
"sketchPlane": null,
|
|
8
|
+
"editSketch": null,
|
|
9
|
+
"dumpSketchDiagnostics": null,
|
|
10
|
+
"curveResolution": 32,
|
|
11
|
+
"__open": false
|
|
12
|
+
},
|
|
13
|
+
"persistentData": {
|
|
14
|
+
"basis": {
|
|
15
|
+
"origin": [
|
|
16
|
+
0,
|
|
17
|
+
0,
|
|
18
|
+
0
|
|
19
|
+
],
|
|
20
|
+
"x": [
|
|
21
|
+
1,
|
|
22
|
+
0,
|
|
23
|
+
0
|
|
24
|
+
],
|
|
25
|
+
"y": [
|
|
26
|
+
0,
|
|
27
|
+
1,
|
|
28
|
+
0
|
|
29
|
+
],
|
|
30
|
+
"z": [
|
|
31
|
+
0,
|
|
32
|
+
0,
|
|
33
|
+
1
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"sketch": {
|
|
37
|
+
"points": [
|
|
38
|
+
{
|
|
39
|
+
"id": 0,
|
|
40
|
+
"x": 0,
|
|
41
|
+
"y": 0,
|
|
42
|
+
"fixed": true
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": 1,
|
|
46
|
+
"x": -1036.902284,
|
|
47
|
+
"y": 121.793877,
|
|
48
|
+
"fixed": false
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"id": 2,
|
|
52
|
+
"x": -1036.902284,
|
|
53
|
+
"y": 121.793877,
|
|
54
|
+
"fixed": false
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"id": 3,
|
|
58
|
+
"x": -52.094437,
|
|
59
|
+
"y": 295.442056,
|
|
60
|
+
"fixed": false
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"id": 4,
|
|
64
|
+
"x": -52.094437,
|
|
65
|
+
"y": 295.442056,
|
|
66
|
+
"fixed": false
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"id": 5,
|
|
70
|
+
"x": 0,
|
|
71
|
+
"y": 0,
|
|
72
|
+
"fixed": true
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"id": 6,
|
|
76
|
+
"x": -984.807759,
|
|
77
|
+
"y": -173.648418,
|
|
78
|
+
"fixed": false
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"id": 7,
|
|
82
|
+
"x": -984.807759,
|
|
83
|
+
"y": -173.648418,
|
|
84
|
+
"fixed": false
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"id": 8,
|
|
88
|
+
"x": -544.498361,
|
|
89
|
+
"y": 208.617964,
|
|
90
|
+
"fixed": false
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"id": 9,
|
|
94
|
+
"x": -492.40388,
|
|
95
|
+
"y": -86.824208,
|
|
96
|
+
"fixed": false
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"id": 10,
|
|
100
|
+
"x": 0,
|
|
101
|
+
"y": 115.277922,
|
|
102
|
+
"fixed": false
|
|
103
|
+
}
|
|
104
|
+
],
|
|
105
|
+
"geometries": [
|
|
106
|
+
{
|
|
107
|
+
"id": 1,
|
|
108
|
+
"type": "line",
|
|
109
|
+
"points": [
|
|
110
|
+
1,
|
|
111
|
+
3
|
|
112
|
+
],
|
|
113
|
+
"construction": true
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"id": 2,
|
|
117
|
+
"type": "line",
|
|
118
|
+
"points": [
|
|
119
|
+
4,
|
|
120
|
+
0
|
|
121
|
+
],
|
|
122
|
+
"construction": false
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"id": 3,
|
|
126
|
+
"type": "line",
|
|
127
|
+
"points": [
|
|
128
|
+
5,
|
|
129
|
+
6
|
|
130
|
+
],
|
|
131
|
+
"construction": true
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"id": 4,
|
|
135
|
+
"type": "line",
|
|
136
|
+
"points": [
|
|
137
|
+
7,
|
|
138
|
+
2
|
|
139
|
+
],
|
|
140
|
+
"construction": false
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": 5,
|
|
144
|
+
"type": "arc",
|
|
145
|
+
"points": [
|
|
146
|
+
8,
|
|
147
|
+
3,
|
|
148
|
+
1
|
|
149
|
+
],
|
|
150
|
+
"construction": false
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"id": 6,
|
|
154
|
+
"type": "arc",
|
|
155
|
+
"points": [
|
|
156
|
+
9,
|
|
157
|
+
6,
|
|
158
|
+
0
|
|
159
|
+
],
|
|
160
|
+
"construction": false
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"id": 7,
|
|
164
|
+
"type": "line",
|
|
165
|
+
"points": [
|
|
166
|
+
0,
|
|
167
|
+
10
|
|
168
|
+
],
|
|
169
|
+
"construction": true
|
|
170
|
+
}
|
|
171
|
+
],
|
|
172
|
+
"constraints": [
|
|
173
|
+
{
|
|
174
|
+
"id": 0,
|
|
175
|
+
"type": "⏚",
|
|
176
|
+
"points": [
|
|
177
|
+
0
|
|
178
|
+
],
|
|
179
|
+
"status": "solved",
|
|
180
|
+
"previousPointValues": "[{\"id\":0,\"x\":0,\"y\":0,\"fixed\":true}]"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"id": 1,
|
|
184
|
+
"type": "≡",
|
|
185
|
+
"points": [
|
|
186
|
+
1,
|
|
187
|
+
2
|
|
188
|
+
],
|
|
189
|
+
"status": "solved",
|
|
190
|
+
"error": null,
|
|
191
|
+
"previousPointValues": "[{\"id\":1,\"x\":-1036.902284,\"y\":121.793877,\"fixed\":false},{\"id\":2,\"x\":-1036.902284,\"y\":121.793877,\"fixed\":false}]"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"id": 2,
|
|
195
|
+
"type": "≡",
|
|
196
|
+
"points": [
|
|
197
|
+
3,
|
|
198
|
+
4
|
|
199
|
+
],
|
|
200
|
+
"status": "solved",
|
|
201
|
+
"error": null,
|
|
202
|
+
"previousPointValues": "[{\"id\":3,\"x\":-52.094437,\"y\":295.442056,\"fixed\":false},{\"id\":4,\"x\":-52.094437,\"y\":295.442056,\"fixed\":false}]"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"id": 3,
|
|
206
|
+
"type": "≡",
|
|
207
|
+
"points": [
|
|
208
|
+
0,
|
|
209
|
+
5
|
|
210
|
+
],
|
|
211
|
+
"status": "solved",
|
|
212
|
+
"error": null,
|
|
213
|
+
"previousPointValues": "[{\"id\":0,\"x\":0,\"y\":0,\"fixed\":true},{\"id\":5,\"x\":0,\"y\":0,\"fixed\":true}]"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"id": 4,
|
|
217
|
+
"type": "≡",
|
|
218
|
+
"points": [
|
|
219
|
+
6,
|
|
220
|
+
7
|
|
221
|
+
],
|
|
222
|
+
"status": "solved",
|
|
223
|
+
"error": null,
|
|
224
|
+
"previousPointValues": "[{\"id\":6,\"x\":-984.807759,\"y\":-173.648418,\"fixed\":false},{\"id\":7,\"x\":-984.807759,\"y\":-173.648418,\"fixed\":false}]"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"id": 5,
|
|
228
|
+
"type": "⟂",
|
|
229
|
+
"points": [
|
|
230
|
+
1,
|
|
231
|
+
3,
|
|
232
|
+
4,
|
|
233
|
+
0
|
|
234
|
+
],
|
|
235
|
+
"status": "solved",
|
|
236
|
+
"value": 90,
|
|
237
|
+
"error": null,
|
|
238
|
+
"previousPointValues": "[{\"id\":1,\"x\":-1036.902284,\"y\":121.793877,\"fixed\":false},{\"id\":3,\"x\":-52.094437,\"y\":295.442056,\"fixed\":false},{\"id\":4,\"x\":-52.094437,\"y\":295.442056,\"fixed\":false},{\"id\":0,\"x\":0,\"y\":0,\"fixed\":true}]"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"id": 6,
|
|
242
|
+
"type": "⟂",
|
|
243
|
+
"points": [
|
|
244
|
+
4,
|
|
245
|
+
0,
|
|
246
|
+
5,
|
|
247
|
+
6
|
|
248
|
+
],
|
|
249
|
+
"status": "solved",
|
|
250
|
+
"value": 90,
|
|
251
|
+
"error": null,
|
|
252
|
+
"previousPointValues": "[{\"id\":4,\"x\":-52.094437,\"y\":295.442056,\"fixed\":false},{\"id\":0,\"x\":0,\"y\":0,\"fixed\":true},{\"id\":5,\"x\":0,\"y\":0,\"fixed\":true},{\"id\":6,\"x\":-984.807759,\"y\":-173.648418,\"fixed\":false}]"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"id": 7,
|
|
256
|
+
"type": "⟂",
|
|
257
|
+
"points": [
|
|
258
|
+
5,
|
|
259
|
+
6,
|
|
260
|
+
7,
|
|
261
|
+
2
|
|
262
|
+
],
|
|
263
|
+
"status": "solved",
|
|
264
|
+
"value": 90,
|
|
265
|
+
"error": null,
|
|
266
|
+
"previousPointValues": "[{\"id\":5,\"x\":0,\"y\":0,\"fixed\":true},{\"id\":6,\"x\":-984.807759,\"y\":-173.648418,\"fixed\":false},{\"id\":7,\"x\":-984.807759,\"y\":-173.648418,\"fixed\":false},{\"id\":2,\"x\":-1036.902284,\"y\":121.793877,\"fixed\":false}]"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"id": 8,
|
|
270
|
+
"type": "⋯",
|
|
271
|
+
"points": [
|
|
272
|
+
3,
|
|
273
|
+
1,
|
|
274
|
+
8
|
|
275
|
+
],
|
|
276
|
+
"labelX": 0,
|
|
277
|
+
"labelY": 0,
|
|
278
|
+
"displayStyle": "",
|
|
279
|
+
"value": null,
|
|
280
|
+
"valueNeedsSetup": true,
|
|
281
|
+
"status": "solved",
|
|
282
|
+
"error": null,
|
|
283
|
+
"previousPointValues": "[{\"id\":3,\"x\":-52.094437,\"y\":295.442056,\"fixed\":false},{\"id\":1,\"x\":-1036.902284,\"y\":121.793877,\"fixed\":false},{\"id\":8,\"x\":-544.498361,\"y\":208.617964,\"fixed\":false}]"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"id": 10,
|
|
287
|
+
"type": "│",
|
|
288
|
+
"points": [
|
|
289
|
+
0,
|
|
290
|
+
10
|
|
291
|
+
],
|
|
292
|
+
"labelX": 0,
|
|
293
|
+
"labelY": 0,
|
|
294
|
+
"displayStyle": "",
|
|
295
|
+
"value": null,
|
|
296
|
+
"valueNeedsSetup": true,
|
|
297
|
+
"status": "solved",
|
|
298
|
+
"error": null,
|
|
299
|
+
"previousPointValues": "[{\"id\":0,\"x\":0,\"y\":0,\"fixed\":true},{\"id\":10,\"x\":0,\"y\":115.277922,\"fixed\":false}]"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"id": 11,
|
|
303
|
+
"type": "∠",
|
|
304
|
+
"points": [
|
|
305
|
+
0,
|
|
306
|
+
4,
|
|
307
|
+
0,
|
|
308
|
+
10
|
|
309
|
+
],
|
|
310
|
+
"labelX": 0,
|
|
311
|
+
"labelY": 0,
|
|
312
|
+
"displayStyle": "",
|
|
313
|
+
"value": 10,
|
|
314
|
+
"valueNeedsSetup": true,
|
|
315
|
+
"status": "solved",
|
|
316
|
+
"error": null,
|
|
317
|
+
"previousPointValues": "[{\"id\":0,\"x\":0,\"y\":0,\"fixed\":true},{\"id\":4,\"x\":-52.094437,\"y\":295.442056,\"fixed\":false},{\"id\":0,\"x\":0,\"y\":0,\"fixed\":true},{\"id\":10,\"x\":0,\"y\":115.277922,\"fixed\":false}]"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"id": 12,
|
|
321
|
+
"type": "⟺",
|
|
322
|
+
"points": [
|
|
323
|
+
7,
|
|
324
|
+
2
|
|
325
|
+
],
|
|
326
|
+
"labelX": 0,
|
|
327
|
+
"labelY": 0,
|
|
328
|
+
"displayStyle": "",
|
|
329
|
+
"value": 300,
|
|
330
|
+
"valueNeedsSetup": true,
|
|
331
|
+
"status": "solved",
|
|
332
|
+
"_distanceRequestedTarget": 300,
|
|
333
|
+
"_distanceAppliedTarget": 300,
|
|
334
|
+
"_distanceThrottleActive": false,
|
|
335
|
+
"error": null,
|
|
336
|
+
"previousPointValues": "[{\"id\":7,\"x\":-984.807759,\"y\":-173.648418,\"fixed\":false},{\"id\":2,\"x\":-1036.902284,\"y\":121.793877,\"fixed\":false}]",
|
|
337
|
+
"valueExpr": "x",
|
|
338
|
+
"_distanceLastAppliedCycle": 104,
|
|
339
|
+
"_distanceLastAppliedPassToken": "1319:88"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"id": 13,
|
|
343
|
+
"type": "⟺",
|
|
344
|
+
"points": [
|
|
345
|
+
5,
|
|
346
|
+
6
|
|
347
|
+
],
|
|
348
|
+
"labelX": 0,
|
|
349
|
+
"labelY": 0,
|
|
350
|
+
"displayStyle": "",
|
|
351
|
+
"value": 1000,
|
|
352
|
+
"valueNeedsSetup": true,
|
|
353
|
+
"status": "solved",
|
|
354
|
+
"_distanceRequestedTarget": 1000,
|
|
355
|
+
"_distanceAppliedTarget": 1000,
|
|
356
|
+
"_distanceThrottleActive": false,
|
|
357
|
+
"error": null,
|
|
358
|
+
"previousPointValues": "[{\"id\":5,\"x\":0,\"y\":0,\"fixed\":true},{\"id\":6,\"x\":-984.807759,\"y\":-173.648418,\"fixed\":false}]",
|
|
359
|
+
"valueExpr": "y",
|
|
360
|
+
"_distanceLastAppliedCycle": 286,
|
|
361
|
+
"_distanceLastAppliedPassToken": "1226:7"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"id": 14,
|
|
365
|
+
"type": "⋯",
|
|
366
|
+
"points": [
|
|
367
|
+
6,
|
|
368
|
+
5,
|
|
369
|
+
9
|
|
370
|
+
],
|
|
371
|
+
"labelX": 0,
|
|
372
|
+
"labelY": 0,
|
|
373
|
+
"displayStyle": "",
|
|
374
|
+
"value": null,
|
|
375
|
+
"valueNeedsSetup": true,
|
|
376
|
+
"status": "solved",
|
|
377
|
+
"error": null,
|
|
378
|
+
"previousPointValues": "[{\"id\":6,\"x\":-984.807759,\"y\":-173.648418,\"fixed\":false},{\"id\":5,\"x\":0,\"y\":0,\"fixed\":true},{\"id\":9,\"x\":-492.40388,\"y\":-86.824208,\"fixed\":false}]"
|
|
379
|
+
}
|
|
380
|
+
]
|
|
381
|
+
},
|
|
382
|
+
"lastSketchSignature": "{\"points\":[{\"id\":0,\"x\":0,\"y\":0,\"fixed\":true},{\"id\":1,\"x\":-1036.902284,\"y\":121.793877,\"fixed\":false},{\"id\":2,\"x\":-1036.902284,\"y\":121.793877,\"fixed\":false},{\"id\":3,\"x\":-52.094437,\"y\":295.442056,\"fixed\":false},{\"id\":4,\"x\":-52.094437,\"y\":295.442056,\"fixed\":false},{\"id\":5,\"x\":0,\"y\":0,\"fixed\":true},{\"id\":6,\"x\":-984.807759,\"y\":-173.648418,\"fixed\":false},{\"id\":7,\"x\":-984.807759,\"y\":-173.648418,\"fixed\":false},{\"id\":8,\"x\":-544.498361,\"y\":208.617964,\"fixed\":false},{\"id\":9,\"x\":-492.40388,\"y\":-86.824208,\"fixed\":false},{\"id\":10,\"x\":0,\"y\":115.277922,\"fixed\":false}],\"geometries\":[{\"id\":1,\"type\":\"line\",\"points\":[1,3],\"construction\":true},{\"id\":2,\"type\":\"line\",\"points\":[4,0],\"construction\":false},{\"id\":3,\"type\":\"line\",\"points\":[5,6],\"construction\":true},{\"id\":4,\"type\":\"line\",\"points\":[7,2],\"construction\":false},{\"id\":5,\"type\":\"arc\",\"points\":[8,3,1],\"construction\":false},{\"id\":6,\"type\":\"arc\",\"points\":[9,6,0],\"construction\":false},{\"id\":7,\"type\":\"line\",\"points\":[0,10],\"construction\":true}],\"constraints\":[{\"id\":0,\"type\":\"⏚\",\"points\":[0],\"status\":\"solved\",\"previousPointValues\":\"[{\\\"id\\\":0,\\\"x\\\":0,\\\"y\\\":0,\\\"fixed\\\":true}]\"},{\"id\":1,\"type\":\"≡\",\"points\":[1,2],\"status\":\"solved\",\"error\":null,\"previousPointValues\":\"[{\\\"id\\\":1,\\\"x\\\":-1036.902284,\\\"y\\\":121.793877,\\\"fixed\\\":false},{\\\"id\\\":2,\\\"x\\\":-1036.902284,\\\"y\\\":121.793877,\\\"fixed\\\":false}]\"},{\"id\":2,\"type\":\"≡\",\"points\":[3,4],\"status\":\"solved\",\"error\":null,\"previousPointValues\":\"[{\\\"id\\\":3,\\\"x\\\":-52.094437,\\\"y\\\":295.442056,\\\"fixed\\\":false},{\\\"id\\\":4,\\\"x\\\":-52.094437,\\\"y\\\":295.442056,\\\"fixed\\\":false}]\"},{\"id\":3,\"type\":\"≡\",\"points\":[0,5],\"status\":\"solved\",\"error\":null,\"previousPointValues\":\"[{\\\"id\\\":0,\\\"x\\\":0,\\\"y\\\":0,\\\"fixed\\\":true},{\\\"id\\\":5,\\\"x\\\":0,\\\"y\\\":0,\\\"fixed\\\":true}]\"},{\"id\":4,\"type\":\"≡\",\"points\":[6,7],\"status\":\"solved\",\"error\":null,\"previousPointValues\":\"[{\\\"id\\\":6,\\\"x\\\":-984.807759,\\\"y\\\":-173.648418,\\\"fixed\\\":false},{\\\"id\\\":7,\\\"x\\\":-984.807759,\\\"y\\\":-173.648418,\\\"fixed\\\":false}]\"},{\"id\":5,\"type\":\"⟂\",\"points\":[1,3,4,0],\"status\":\"solved\",\"value\":90,\"error\":null,\"previousPointValues\":\"[{\\\"id\\\":1,\\\"x\\\":-1036.902284,\\\"y\\\":121.793877,\\\"fixed\\\":false},{\\\"id\\\":3,\\\"x\\\":-52.094437,\\\"y\\\":295.442056,\\\"fixed\\\":false},{\\\"id\\\":4,\\\"x\\\":-52.094437,\\\"y\\\":295.442056,\\\"fixed\\\":false},{\\\"id\\\":0,\\\"x\\\":0,\\\"y\\\":0,\\\"fixed\\\":true}]\"},{\"id\":6,\"type\":\"⟂\",\"points\":[4,0,5,6],\"status\":\"solved\",\"value\":90,\"error\":null,\"previousPointValues\":\"[{\\\"id\\\":4,\\\"x\\\":-52.094437,\\\"y\\\":295.442056,\\\"fixed\\\":false},{\\\"id\\\":0,\\\"x\\\":0,\\\"y\\\":0,\\\"fixed\\\":true},{\\\"id\\\":5,\\\"x\\\":0,\\\"y\\\":0,\\\"fixed\\\":true},{\\\"id\\\":6,\\\"x\\\":-984.807759,\\\"y\\\":-173.648418,\\\"fixed\\\":false}]\"},{\"id\":7,\"type\":\"⟂\",\"points\":[5,6,7,2],\"status\":\"solved\",\"value\":90,\"error\":null,\"previousPointValues\":\"[{\\\"id\\\":5,\\\"x\\\":0,\\\"y\\\":0,\\\"fixed\\\":true},{\\\"id\\\":6,\\\"x\\\":-984.807759,\\\"y\\\":-173.648418,\\\"fixed\\\":false},{\\\"id\\\":7,\\\"x\\\":-984.807759,\\\"y\\\":-173.648418,\\\"fixed\\\":false},{\\\"id\\\":2,\\\"x\\\":-1036.902284,\\\"y\\\":121.793877,\\\"fixed\\\":false}]\"},{\"id\":8,\"type\":\"⋯\",\"points\":[3,1,8],\"labelX\":0,\"labelY\":0,\"displayStyle\":\"\",\"value\":null,\"valueNeedsSetup\":true,\"status\":\"solved\",\"error\":null,\"previousPointValues\":\"[{\\\"id\\\":3,\\\"x\\\":-52.094437,\\\"y\\\":295.442056,\\\"fixed\\\":false},{\\\"id\\\":1,\\\"x\\\":-1036.902284,\\\"y\\\":121.793877,\\\"fixed\\\":false},{\\\"id\\\":8,\\\"x\\\":-544.498361,\\\"y\\\":208.617964,\\\"fixed\\\":false}]\"},{\"id\":10,\"type\":\"│\",\"points\":[0,10],\"labelX\":0,\"labelY\":0,\"displayStyle\":\"\",\"value\":null,\"valueNeedsSetup\":true,\"status\":\"solved\",\"error\":null,\"previousPointValues\":\"[{\\\"id\\\":0,\\\"x\\\":0,\\\"y\\\":0,\\\"fixed\\\":true},{\\\"id\\\":10,\\\"x\\\":0,\\\"y\\\":115.277922,\\\"fixed\\\":false}]\"},{\"id\":11,\"type\":\"∠\",\"points\":[0,4,0,10],\"labelX\":0,\"labelY\":0,\"displayStyle\":\"\",\"value\":10,\"valueNeedsSetup\":true,\"status\":\"solved\",\"error\":null,\"previousPointValues\":\"[{\\\"id\\\":0,\\\"x\\\":0,\\\"y\\\":0,\\\"fixed\\\":true},{\\\"id\\\":4,\\\"x\\\":-52.094437,\\\"y\\\":295.442056,\\\"fixed\\\":false},{\\\"id\\\":0,\\\"x\\\":0,\\\"y\\\":0,\\\"fixed\\\":true},{\\\"id\\\":10,\\\"x\\\":0,\\\"y\\\":115.277922,\\\"fixed\\\":false}]\"},{\"id\":12,\"type\":\"⟺\",\"points\":[7,2],\"labelX\":0,\"labelY\":0,\"displayStyle\":\"\",\"value\":300,\"valueNeedsSetup\":true,\"status\":\"solved\",\"_distanceRequestedTarget\":300,\"_distanceAppliedTarget\":300,\"_distanceThrottleActive\":false,\"error\":null,\"previousPointValues\":\"[{\\\"id\\\":7,\\\"x\\\":-984.807759,\\\"y\\\":-173.648418,\\\"fixed\\\":false},{\\\"id\\\":2,\\\"x\\\":-1036.902284,\\\"y\\\":121.793877,\\\"fixed\\\":false}]\",\"valueExpr\":\"x\",\"_distanceLastAppliedCycle\":104,\"_distanceLastAppliedPassToken\":\"1319:88\"},{\"id\":13,\"type\":\"⟺\",\"points\":[5,6],\"labelX\":0,\"labelY\":0,\"displayStyle\":\"\",\"value\":1000,\"valueNeedsSetup\":true,\"status\":\"solved\",\"_distanceRequestedTarget\":1000,\"_distanceAppliedTarget\":1000,\"_distanceThrottleActive\":false,\"error\":null,\"previousPointValues\":\"[{\\\"id\\\":5,\\\"x\\\":0,\\\"y\\\":0,\\\"fixed\\\":true},{\\\"id\\\":6,\\\"x\\\":-984.807759,\\\"y\\\":-173.648418,\\\"fixed\\\":false}]\",\"valueExpr\":\"y\",\"_distanceLastAppliedCycle\":286,\"_distanceLastAppliedPassToken\":\"1226:7\"},{\"id\":14,\"type\":\"⋯\",\"points\":[6,5,9],\"labelX\":0,\"labelY\":0,\"displayStyle\":\"\",\"value\":null,\"valueNeedsSetup\":true,\"status\":\"solved\",\"error\":null,\"previousPointValues\":\"[{\\\"id\\\":6,\\\"x\\\":-984.807759,\\\"y\\\":-173.648418,\\\"fixed\\\":false},{\\\"id\\\":5,\\\"x\\\":0,\\\"y\\\":0,\\\"fixed\\\":true},{\\\"id\\\":9,\\\"x\\\":-492.40388,\\\"y\\\":-86.824208,\\\"fixed\\\":false}]\"}]}",
|
|
383
|
+
"lastSketchChanged": false,
|
|
384
|
+
"sketchDimOffsets": {
|
|
385
|
+
"11": {
|
|
386
|
+
"du": -14.353134822893393,
|
|
387
|
+
"dv": 76.02826727622022
|
|
388
|
+
},
|
|
389
|
+
"12": {
|
|
390
|
+
"d": 79.4150386128091
|
|
391
|
+
},
|
|
392
|
+
"13": {
|
|
393
|
+
"d": 764.1395111898743
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"__refPreviewSnapshots": {
|
|
397
|
+
"sketchPlane": {}
|
|
398
|
+
},
|
|
399
|
+
"externalRefs": []
|
|
400
|
+
},
|
|
401
|
+
"timestamp": 1771708810595
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"type": "E",
|
|
405
|
+
"inputParams": {
|
|
406
|
+
"id": "E2",
|
|
407
|
+
"profile": "S1:PROFILE",
|
|
408
|
+
"consumeProfileSketch": true,
|
|
409
|
+
"distance": "z",
|
|
410
|
+
"distanceBack": 0,
|
|
411
|
+
"boolean": {
|
|
412
|
+
"targets": [],
|
|
413
|
+
"operation": "NONE"
|
|
414
|
+
},
|
|
415
|
+
"__open": false
|
|
416
|
+
},
|
|
417
|
+
"persistentData": {
|
|
418
|
+
"__refPreviewSnapshots": {
|
|
419
|
+
"profile": {
|
|
420
|
+
"S1:PROFILE": {
|
|
421
|
+
"type": "FACE",
|
|
422
|
+
"edgePositions": [
|
|
423
|
+
[
|
|
424
|
+
-52.094437,
|
|
425
|
+
295.442056,
|
|
426
|
+
0,
|
|
427
|
+
0,
|
|
428
|
+
0,
|
|
429
|
+
0
|
|
430
|
+
],
|
|
431
|
+
[
|
|
432
|
+
-984.807759,
|
|
433
|
+
-173.648418,
|
|
434
|
+
0,
|
|
435
|
+
-958.4077934975074,
|
|
436
|
+
-268.04334634189354,
|
|
437
|
+
0,
|
|
438
|
+
-914.0995589860238,
|
|
439
|
+
-355.4741248451149,
|
|
440
|
+
0,
|
|
441
|
+
-853.5857960648494,
|
|
442
|
+
-432.58083773267015,
|
|
443
|
+
0,
|
|
444
|
+
-779.1920147002102,
|
|
445
|
+
-496.4003172782938,
|
|
446
|
+
0,
|
|
447
|
+
-693.7771261816595,
|
|
448
|
+
-544.4800166800949,
|
|
449
|
+
0,
|
|
450
|
+
-600.623576764815,
|
|
451
|
+
-574.972260058494,
|
|
452
|
+
0,
|
|
453
|
+
-503.3112051029164,
|
|
454
|
+
-586.7052476038941,
|
|
455
|
+
0,
|
|
456
|
+
-405.5796710553513,
|
|
457
|
+
-579.2280871860871,
|
|
458
|
+
0,
|
|
459
|
+
-311.1847426568757,
|
|
460
|
+
-552.8281218859079,
|
|
461
|
+
0,
|
|
462
|
+
-223.7539640586901,
|
|
463
|
+
-508.5198875618113,
|
|
464
|
+
0,
|
|
465
|
+
-146.64725104143764,
|
|
466
|
+
-448.0061248058969,
|
|
467
|
+
0,
|
|
468
|
+
-82.8277713363687,
|
|
469
|
+
-373.61234357803966,
|
|
470
|
+
0,
|
|
471
|
+
-34.74807175150113,
|
|
472
|
+
-288.1974551625364,
|
|
473
|
+
0,
|
|
474
|
+
-4.255828173449288,
|
|
475
|
+
-195.04390581104485,
|
|
476
|
+
0,
|
|
477
|
+
7.477159580516911,
|
|
478
|
+
-97.73153417429302,
|
|
479
|
+
0,
|
|
480
|
+
0,
|
|
481
|
+
0,
|
|
482
|
+
0
|
|
483
|
+
],
|
|
484
|
+
[
|
|
485
|
+
-984.807759,
|
|
486
|
+
-173.648418,
|
|
487
|
+
0,
|
|
488
|
+
-1036.902284,
|
|
489
|
+
121.793877,
|
|
490
|
+
0
|
|
491
|
+
],
|
|
492
|
+
[
|
|
493
|
+
-52.094437,
|
|
494
|
+
295.442056,
|
|
495
|
+
0,
|
|
496
|
+
-78.4943802874393,
|
|
497
|
+
389.8369952364284,
|
|
498
|
+
0,
|
|
499
|
+
-122.80259510765126,
|
|
500
|
+
477.2677887732309,
|
|
501
|
+
0,
|
|
502
|
+
-183.31634162369397,
|
|
503
|
+
554.3745202667988,
|
|
504
|
+
0,
|
|
505
|
+
-257.7101105074762,
|
|
506
|
+
618.194021285652,
|
|
507
|
+
0,
|
|
508
|
+
-343.1249909585367,
|
|
509
|
+
666.2737442108111,
|
|
510
|
+
0,
|
|
511
|
+
-436.27853704214783,
|
|
512
|
+
696.7660122648207,
|
|
513
|
+
0,
|
|
514
|
+
-533.5909102450092,
|
|
515
|
+
708.4990246936911,
|
|
516
|
+
0,
|
|
517
|
+
-631.3224506608892,
|
|
518
|
+
701.0218884124483,
|
|
519
|
+
0,
|
|
520
|
+
-725.7173900227276,
|
|
521
|
+
674.6219455734218,
|
|
522
|
+
0,
|
|
523
|
+
-813.1481837700114,
|
|
524
|
+
630.3137311685402,
|
|
525
|
+
0,
|
|
526
|
+
-890.254915551043,
|
|
527
|
+
569.7999850187847,
|
|
528
|
+
0,
|
|
529
|
+
-954.074416923296,
|
|
530
|
+
495.40621643816996,
|
|
531
|
+
0,
|
|
532
|
+
-1002.1541402542091,
|
|
533
|
+
409.99133621550675,
|
|
534
|
+
0,
|
|
535
|
+
-1032.6464087507343,
|
|
536
|
+
316.837790276746,
|
|
537
|
+
0,
|
|
538
|
+
-1044.3794216418764,
|
|
539
|
+
219.52541712962093,
|
|
540
|
+
0,
|
|
541
|
+
-1036.902284,
|
|
542
|
+
121.793877,
|
|
543
|
+
0
|
|
544
|
+
]
|
|
545
|
+
],
|
|
546
|
+
"sourceUuid": "de83365c-e699-4723-933f-20b523071088",
|
|
547
|
+
"sourceFeatureId": null,
|
|
548
|
+
"sourceTimestamp": 1771708810595
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
"timestamp": 1771708810598
|
|
554
|
+
}
|
|
555
|
+
],
|
|
556
|
+
"idCounter": 2,
|
|
557
|
+
"expressions": "//Examples:\nx = 300; \ny = 1000;\nz = 300",
|
|
558
|
+
"pmiViews": [],
|
|
559
|
+
"metadata": {},
|
|
560
|
+
"assemblyConstraints": [],
|
|
561
|
+
"assemblyConstraintIdCounter": 0
|
|
562
|
+
}
|