brep-io-kernel 1.0.0-ci.9

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.
Files changed (271) hide show
  1. package/LICENSE.md +32 -0
  2. package/README.md +154 -0
  3. package/dist-kernel/brep-kernel.js +74699 -0
  4. package/package.json +58 -0
  5. package/src/BREP/AssemblyComponent.js +42 -0
  6. package/src/BREP/BREP.js +43 -0
  7. package/src/BREP/BetterSolid.js +805 -0
  8. package/src/BREP/Edge.js +103 -0
  9. package/src/BREP/Extrude.js +403 -0
  10. package/src/BREP/Face.js +187 -0
  11. package/src/BREP/MeshRepairer.js +634 -0
  12. package/src/BREP/OffsetShellSolid.js +614 -0
  13. package/src/BREP/PointCloudWrap.js +302 -0
  14. package/src/BREP/Revolve.js +345 -0
  15. package/src/BREP/SolidMethods/authoring.js +112 -0
  16. package/src/BREP/SolidMethods/booleanOps.js +230 -0
  17. package/src/BREP/SolidMethods/chamfer.js +122 -0
  18. package/src/BREP/SolidMethods/edgeResolution.js +25 -0
  19. package/src/BREP/SolidMethods/fillet.js +792 -0
  20. package/src/BREP/SolidMethods/index.js +72 -0
  21. package/src/BREP/SolidMethods/io.js +105 -0
  22. package/src/BREP/SolidMethods/lifecycle.js +103 -0
  23. package/src/BREP/SolidMethods/manifoldOps.js +375 -0
  24. package/src/BREP/SolidMethods/meshCleanup.js +2512 -0
  25. package/src/BREP/SolidMethods/meshQueries.js +264 -0
  26. package/src/BREP/SolidMethods/metadata.js +106 -0
  27. package/src/BREP/SolidMethods/metrics.js +51 -0
  28. package/src/BREP/SolidMethods/transforms.js +361 -0
  29. package/src/BREP/SolidMethods/visualize.js +508 -0
  30. package/src/BREP/SolidShared.js +26 -0
  31. package/src/BREP/Sweep.js +1596 -0
  32. package/src/BREP/Tube.js +857 -0
  33. package/src/BREP/Vertex.js +43 -0
  34. package/src/BREP/applyBooleanOperation.js +704 -0
  35. package/src/BREP/boundsUtils.js +48 -0
  36. package/src/BREP/chamfer.js +551 -0
  37. package/src/BREP/edgePolylineUtils.js +85 -0
  38. package/src/BREP/fillets/common.js +388 -0
  39. package/src/BREP/fillets/fillet.js +1422 -0
  40. package/src/BREP/fillets/filletGeometry.js +15 -0
  41. package/src/BREP/fillets/inset.js +389 -0
  42. package/src/BREP/fillets/offsetHelper.js +143 -0
  43. package/src/BREP/fillets/outset.js +88 -0
  44. package/src/BREP/helix.js +193 -0
  45. package/src/BREP/meshToBrep.js +234 -0
  46. package/src/BREP/primitives.js +279 -0
  47. package/src/BREP/setupManifold.js +71 -0
  48. package/src/BREP/threadGeometry.js +1120 -0
  49. package/src/BREP/triangleUtils.js +8 -0
  50. package/src/BREP/triangulate.js +608 -0
  51. package/src/FeatureRegistry.js +183 -0
  52. package/src/PartHistory.js +1132 -0
  53. package/src/UI/AccordionWidget.js +292 -0
  54. package/src/UI/CADmaterials.js +850 -0
  55. package/src/UI/EnvMonacoEditor.js +522 -0
  56. package/src/UI/FloatingWindow.js +396 -0
  57. package/src/UI/HistoryWidget.js +457 -0
  58. package/src/UI/MainToolbar.js +131 -0
  59. package/src/UI/ModelLibraryView.js +194 -0
  60. package/src/UI/OrthoCameraIdle.js +206 -0
  61. package/src/UI/PluginsWidget.js +280 -0
  62. package/src/UI/SceneListing.js +606 -0
  63. package/src/UI/SelectionFilter.js +629 -0
  64. package/src/UI/ViewCube.js +389 -0
  65. package/src/UI/assembly/AssemblyConstraintCollectionWidget.js +329 -0
  66. package/src/UI/assembly/AssemblyConstraintControlsWidget.js +282 -0
  67. package/src/UI/assembly/AssemblyConstraintsWidget.css +292 -0
  68. package/src/UI/assembly/AssemblyConstraintsWidget.js +1373 -0
  69. package/src/UI/assembly/constraintFaceUtils.js +115 -0
  70. package/src/UI/assembly/constraintHighlightUtils.js +70 -0
  71. package/src/UI/assembly/constraintLabelUtils.js +31 -0
  72. package/src/UI/assembly/constraintPointUtils.js +64 -0
  73. package/src/UI/assembly/constraintSelectionUtils.js +185 -0
  74. package/src/UI/assembly/constraintStatusUtils.js +142 -0
  75. package/src/UI/componentSelectorModal.js +240 -0
  76. package/src/UI/controls/CombinedTransformControls.js +386 -0
  77. package/src/UI/dialogs.js +351 -0
  78. package/src/UI/expressionsManager.js +100 -0
  79. package/src/UI/featureDialogWidgets/booleanField.js +25 -0
  80. package/src/UI/featureDialogWidgets/booleanOperationField.js +97 -0
  81. package/src/UI/featureDialogWidgets/buttonField.js +45 -0
  82. package/src/UI/featureDialogWidgets/componentSelectorField.js +102 -0
  83. package/src/UI/featureDialogWidgets/defaultField.js +23 -0
  84. package/src/UI/featureDialogWidgets/fileField.js +66 -0
  85. package/src/UI/featureDialogWidgets/index.js +34 -0
  86. package/src/UI/featureDialogWidgets/numberField.js +165 -0
  87. package/src/UI/featureDialogWidgets/optionsField.js +33 -0
  88. package/src/UI/featureDialogWidgets/referenceSelectionField.js +208 -0
  89. package/src/UI/featureDialogWidgets/stringField.js +24 -0
  90. package/src/UI/featureDialogWidgets/textareaField.js +28 -0
  91. package/src/UI/featureDialogWidgets/threadDesignationField.js +160 -0
  92. package/src/UI/featureDialogWidgets/transformField.js +252 -0
  93. package/src/UI/featureDialogWidgets/utils.js +43 -0
  94. package/src/UI/featureDialogWidgets/vec3Field.js +133 -0
  95. package/src/UI/featureDialogs.js +1414 -0
  96. package/src/UI/fileManagerWidget.js +615 -0
  97. package/src/UI/history/HistoryCollectionWidget.js +1294 -0
  98. package/src/UI/history/historyCollectionWidget.css.js +257 -0
  99. package/src/UI/history/historyDisplayInfo.js +133 -0
  100. package/src/UI/mobile.js +28 -0
  101. package/src/UI/objectDump.js +442 -0
  102. package/src/UI/pmi/AnnotationCollectionWidget.js +120 -0
  103. package/src/UI/pmi/AnnotationHistory.js +353 -0
  104. package/src/UI/pmi/AnnotationRegistry.js +90 -0
  105. package/src/UI/pmi/BaseAnnotation.js +269 -0
  106. package/src/UI/pmi/LabelOverlay.css +102 -0
  107. package/src/UI/pmi/LabelOverlay.js +191 -0
  108. package/src/UI/pmi/PMIMode.js +1550 -0
  109. package/src/UI/pmi/PMIViewsWidget.js +1098 -0
  110. package/src/UI/pmi/annUtils.js +729 -0
  111. package/src/UI/pmi/dimensions/AngleDimensionAnnotation.js +647 -0
  112. package/src/UI/pmi/dimensions/ExplodeBodyAnnotation.js +507 -0
  113. package/src/UI/pmi/dimensions/HoleCalloutAnnotation.js +462 -0
  114. package/src/UI/pmi/dimensions/LeaderAnnotation.js +403 -0
  115. package/src/UI/pmi/dimensions/LinearDimensionAnnotation.js +532 -0
  116. package/src/UI/pmi/dimensions/NoteAnnotation.js +110 -0
  117. package/src/UI/pmi/dimensions/RadialDimensionAnnotation.js +659 -0
  118. package/src/UI/pmi/pmiStyle.js +44 -0
  119. package/src/UI/sketcher/SketchMode3D.js +4095 -0
  120. package/src/UI/sketcher/dimensions.js +674 -0
  121. package/src/UI/sketcher/glyphs.js +236 -0
  122. package/src/UI/sketcher/highlights.js +60 -0
  123. package/src/UI/toolbarButtons/aboutButton.js +5 -0
  124. package/src/UI/toolbarButtons/exportButton.js +609 -0
  125. package/src/UI/toolbarButtons/flatPatternButton.js +307 -0
  126. package/src/UI/toolbarButtons/importButton.js +160 -0
  127. package/src/UI/toolbarButtons/inspectorToggleButton.js +12 -0
  128. package/src/UI/toolbarButtons/metadataButton.js +1063 -0
  129. package/src/UI/toolbarButtons/orientToFaceButton.js +114 -0
  130. package/src/UI/toolbarButtons/registerDefaultButtons.js +46 -0
  131. package/src/UI/toolbarButtons/saveButton.js +99 -0
  132. package/src/UI/toolbarButtons/scriptRunnerButton.js +302 -0
  133. package/src/UI/toolbarButtons/testsButton.js +26 -0
  134. package/src/UI/toolbarButtons/undoRedoButtons.js +25 -0
  135. package/src/UI/toolbarButtons/wireframeToggleButton.js +5 -0
  136. package/src/UI/toolbarButtons/zoomToFitButton.js +5 -0
  137. package/src/UI/triangleDebuggerWindow.js +945 -0
  138. package/src/UI/viewer.js +4228 -0
  139. package/src/assemblyConstraints/AssemblyConstraintHistory.js +1576 -0
  140. package/src/assemblyConstraints/AssemblyConstraintRegistry.js +120 -0
  141. package/src/assemblyConstraints/BaseAssemblyConstraint.js +66 -0
  142. package/src/assemblyConstraints/constraintExpressionUtils.js +35 -0
  143. package/src/assemblyConstraints/constraintUtils/parallelAlignment.js +676 -0
  144. package/src/assemblyConstraints/constraints/AngleConstraint.js +485 -0
  145. package/src/assemblyConstraints/constraints/CoincidentConstraint.js +194 -0
  146. package/src/assemblyConstraints/constraints/DistanceConstraint.js +616 -0
  147. package/src/assemblyConstraints/constraints/FixedConstraint.js +78 -0
  148. package/src/assemblyConstraints/constraints/ParallelConstraint.js +252 -0
  149. package/src/assemblyConstraints/constraints/TouchAlignConstraint.js +961 -0
  150. package/src/core/entities/HistoryCollectionBase.js +72 -0
  151. package/src/core/entities/ListEntityBase.js +109 -0
  152. package/src/core/entities/schemaProcesser.js +121 -0
  153. package/src/exporters/sheetMetalFlatPattern.js +659 -0
  154. package/src/exporters/sheetMetalUnfold.js +862 -0
  155. package/src/exporters/step.js +1135 -0
  156. package/src/exporters/threeMF.js +575 -0
  157. package/src/features/assemblyComponent/AssemblyComponentFeature.js +780 -0
  158. package/src/features/boolean/BooleanFeature.js +94 -0
  159. package/src/features/chamfer/ChamferFeature.js +116 -0
  160. package/src/features/datium/DatiumFeature.js +80 -0
  161. package/src/features/edgeFeatureUtils.js +41 -0
  162. package/src/features/extrude/ExtrudeFeature.js +143 -0
  163. package/src/features/fillet/FilletFeature.js +197 -0
  164. package/src/features/helix/HelixFeature.js +405 -0
  165. package/src/features/hole/HoleFeature.js +1050 -0
  166. package/src/features/hole/screwClearance.js +86 -0
  167. package/src/features/hole/threadDesignationCatalog.js +149 -0
  168. package/src/features/imageHeightSolid/ImageHeightmapSolidFeature.js +463 -0
  169. package/src/features/imageToFace/ImageToFaceFeature.js +727 -0
  170. package/src/features/imageToFace/imageEditor.js +1270 -0
  171. package/src/features/imageToFace/traceUtils.js +971 -0
  172. package/src/features/import3dModel/Import3dModelFeature.js +151 -0
  173. package/src/features/loft/LoftFeature.js +605 -0
  174. package/src/features/mirror/MirrorFeature.js +151 -0
  175. package/src/features/offsetFace/OffsetFaceFeature.js +370 -0
  176. package/src/features/offsetShell/OffsetShellFeature.js +89 -0
  177. package/src/features/overlapCleanup/OverlapCleanupFeature.js +85 -0
  178. package/src/features/pattern/PatternFeature.js +275 -0
  179. package/src/features/patternLinear/PatternLinearFeature.js +120 -0
  180. package/src/features/patternRadial/PatternRadialFeature.js +186 -0
  181. package/src/features/plane/PlaneFeature.js +154 -0
  182. package/src/features/primitiveCone/primitiveConeFeature.js +99 -0
  183. package/src/features/primitiveCube/primitiveCubeFeature.js +70 -0
  184. package/src/features/primitiveCylinder/primitiveCylinderFeature.js +91 -0
  185. package/src/features/primitivePyramid/primitivePyramidFeature.js +72 -0
  186. package/src/features/primitiveSphere/primitiveSphereFeature.js +62 -0
  187. package/src/features/primitiveTorus/primitiveTorusFeature.js +109 -0
  188. package/src/features/remesh/RemeshFeature.js +97 -0
  189. package/src/features/revolve/RevolveFeature.js +111 -0
  190. package/src/features/selectionUtils.js +118 -0
  191. package/src/features/sheetMetal/SheetMetalContourFlangeFeature.js +1656 -0
  192. package/src/features/sheetMetal/SheetMetalCutoutFeature.js +1056 -0
  193. package/src/features/sheetMetal/SheetMetalFlangeFeature.js +1568 -0
  194. package/src/features/sheetMetal/SheetMetalHemFeature.js +43 -0
  195. package/src/features/sheetMetal/SheetMetalObject.js +141 -0
  196. package/src/features/sheetMetal/SheetMetalTabFeature.js +176 -0
  197. package/src/features/sheetMetal/UNFOLD_NEUTRAL_REQUIREMENTS.md +153 -0
  198. package/src/features/sheetMetal/contour-flange-rebuild-spec.md +261 -0
  199. package/src/features/sheetMetal/profileUtils.js +25 -0
  200. package/src/features/sheetMetal/sheetMetalCleanup.js +9 -0
  201. package/src/features/sheetMetal/sheetMetalFaceTypes.js +146 -0
  202. package/src/features/sheetMetal/sheetMetalMetadata.js +165 -0
  203. package/src/features/sheetMetal/sheetMetalPipeline.js +169 -0
  204. package/src/features/sheetMetal/sheetMetalProfileUtils.js +216 -0
  205. package/src/features/sheetMetal/sheetMetalTabUtils.js +29 -0
  206. package/src/features/sheetMetal/sheetMetalTree.js +210 -0
  207. package/src/features/sketch/SketchFeature.js +955 -0
  208. package/src/features/sketch/sketchSolver2D/ConstraintEngine.js +800 -0
  209. package/src/features/sketch/sketchSolver2D/constraintDefinitions.js +704 -0
  210. package/src/features/sketch/sketchSolver2D/mathHelpersMod.js +307 -0
  211. package/src/features/spline/SplineEditorSession.js +988 -0
  212. package/src/features/spline/SplineFeature.js +1388 -0
  213. package/src/features/spline/splineUtils.js +218 -0
  214. package/src/features/sweep/SweepFeature.js +110 -0
  215. package/src/features/transform/TransformFeature.js +152 -0
  216. package/src/features/tube/TubeFeature.js +635 -0
  217. package/src/fs.proxy.js +625 -0
  218. package/src/idbStorage.js +254 -0
  219. package/src/index.js +12 -0
  220. package/src/main.js +15 -0
  221. package/src/metadataManager.js +64 -0
  222. package/src/path.proxy.js +277 -0
  223. package/src/plugins/ghLoader.worker.js +151 -0
  224. package/src/plugins/pluginManager.js +286 -0
  225. package/src/pmi/PMIViewsManager.js +134 -0
  226. package/src/services/componentLibrary.js +198 -0
  227. package/src/tests/ConsoleCapture.js +189 -0
  228. package/src/tests/S7-diagnostics-2025-12-23T18-37-23-570Z.json +630 -0
  229. package/src/tests/browserTests.js +597 -0
  230. package/src/tests/debugBoolean.js +225 -0
  231. package/src/tests/partFiles/badBoolean.json +957 -0
  232. package/src/tests/partFiles/extrudeTest.json +88 -0
  233. package/src/tests/partFiles/filletFail.json +58 -0
  234. package/src/tests/partFiles/import_TEst.part.part.json +646 -0
  235. package/src/tests/partFiles/sheetMetalHem.BREP.json +734 -0
  236. package/src/tests/test_boolean_subtract.js +27 -0
  237. package/src/tests/test_chamfer.js +17 -0
  238. package/src/tests/test_extrudeFace.js +24 -0
  239. package/src/tests/test_fillet.js +17 -0
  240. package/src/tests/test_fillet_nonClosed.js +45 -0
  241. package/src/tests/test_filletsMoreDifficult.js +46 -0
  242. package/src/tests/test_history_features_basic.js +149 -0
  243. package/src/tests/test_hole.js +282 -0
  244. package/src/tests/test_mirror.js +16 -0
  245. package/src/tests/test_offsetShellGrouping.js +85 -0
  246. package/src/tests/test_plane.js +4 -0
  247. package/src/tests/test_primitiveCone.js +11 -0
  248. package/src/tests/test_primitiveCube.js +7 -0
  249. package/src/tests/test_primitiveCylinder.js +8 -0
  250. package/src/tests/test_primitivePyramid.js +9 -0
  251. package/src/tests/test_primitiveSphere.js +17 -0
  252. package/src/tests/test_primitiveTorus.js +21 -0
  253. package/src/tests/test_pushFace.js +126 -0
  254. package/src/tests/test_sheetMetalContourFlange.js +125 -0
  255. package/src/tests/test_sheetMetal_features.js +80 -0
  256. package/src/tests/test_sketch_openLoop.js +45 -0
  257. package/src/tests/test_solidMetrics.js +58 -0
  258. package/src/tests/test_stlLoader.js +1889 -0
  259. package/src/tests/test_sweepFace.js +55 -0
  260. package/src/tests/test_tube.js +45 -0
  261. package/src/tests/test_tube_closedLoop.js +67 -0
  262. package/src/tests/tests.js +493 -0
  263. package/src/tools/assemblyConstraintDialogCapturePage.js +56 -0
  264. package/src/tools/dialogCapturePageFactory.js +227 -0
  265. package/src/tools/featureDialogCapturePage.js +47 -0
  266. package/src/tools/pmiAnnotationDialogCapturePage.js +60 -0
  267. package/src/utils/axisHelpers.js +99 -0
  268. package/src/utils/deepClone.js +69 -0
  269. package/src/utils/geometryTolerance.js +37 -0
  270. package/src/utils/normalizeTypeString.js +8 -0
  271. package/src/utils/xformMath.js +51 -0
@@ -0,0 +1,646 @@
1
+ {
2
+ "features": [
3
+ {
4
+ "type": "S",
5
+ "inputParams": {
6
+ "featureID": "S8",
7
+ "sketchPlane": null,
8
+ "editSketch": null,
9
+ "curveResolution": "16"
10
+ },
11
+ "persistentData": {
12
+ "basis": {
13
+ "origin": [
14
+ 0,
15
+ 0,
16
+ 0
17
+ ],
18
+ "x": [
19
+ 1,
20
+ 0,
21
+ 0
22
+ ],
23
+ "y": [
24
+ 0,
25
+ 1,
26
+ 0
27
+ ],
28
+ "z": [
29
+ 0,
30
+ 0,
31
+ 1
32
+ ]
33
+ },
34
+ "sketch": {
35
+ "points": [
36
+ {
37
+ "id": 0,
38
+ "x": 0,
39
+ "y": 0,
40
+ "fixed": true
41
+ },
42
+ {
43
+ "id": 1,
44
+ "x": 0,
45
+ "y": 19.999995,
46
+ "fixed": false
47
+ },
48
+ {
49
+ "id": 2,
50
+ "x": 24.825992,
51
+ "y": 32.948741,
52
+ "fixed": false
53
+ },
54
+ {
55
+ "id": 3,
56
+ "x": 37.117184,
57
+ "y": 15.719556,
58
+ "fixed": false
59
+ },
60
+ {
61
+ "id": 4,
62
+ "x": 37.117184,
63
+ "y": 0,
64
+ "fixed": false
65
+ },
66
+ {
67
+ "id": 5,
68
+ "x": 18.271034,
69
+ "y": 13.635452,
70
+ "fixed": false
71
+ },
72
+ {
73
+ "id": 6,
74
+ "x": 18.271034,
75
+ "y": 19.890693,
76
+ "fixed": false
77
+ },
78
+ {
79
+ "id": 7,
80
+ "x": 2.696772,
81
+ "y": 14.465233,
82
+ "fixed": false
83
+ },
84
+ {
85
+ "id": 8,
86
+ "x": 8.441377,
87
+ "y": 3.358996,
88
+ "fixed": false
89
+ },
90
+ {
91
+ "id": 9,
92
+ "x": 2.696772,
93
+ "y": 14.465233,
94
+ "fixed": false
95
+ },
96
+ {
97
+ "id": 10,
98
+ "x": 8.441377,
99
+ "y": 14.465233,
100
+ "fixed": false
101
+ },
102
+ {
103
+ "id": 11,
104
+ "x": 8.441377,
105
+ "y": 14.465233,
106
+ "fixed": false
107
+ },
108
+ {
109
+ "id": 12,
110
+ "x": 8.441377,
111
+ "y": 3.358996,
112
+ "fixed": false
113
+ },
114
+ {
115
+ "id": 13,
116
+ "x": 2.696772,
117
+ "y": 3.358996,
118
+ "fixed": false
119
+ },
120
+ {
121
+ "id": 14,
122
+ "x": 2.696772,
123
+ "y": 3.358996,
124
+ "fixed": false
125
+ },
126
+ {
127
+ "id": 15,
128
+ "x": 28.866638,
129
+ "y": 8.912114,
130
+ "fixed": false
131
+ },
132
+ {
133
+ "id": 16,
134
+ "x": 32.185746,
135
+ "y": 4.061113,
136
+ "fixed": false
137
+ },
138
+ {
139
+ "id": 17,
140
+ "x": 28.866638,
141
+ "y": 8.912114,
142
+ "fixed": false
143
+ },
144
+ {
145
+ "id": 18,
146
+ "x": 32.185746,
147
+ "y": 8.912114,
148
+ "fixed": false
149
+ },
150
+ {
151
+ "id": 19,
152
+ "x": 32.185746,
153
+ "y": 8.912114,
154
+ "fixed": false
155
+ },
156
+ {
157
+ "id": 20,
158
+ "x": 32.185746,
159
+ "y": 4.061113,
160
+ "fixed": false
161
+ },
162
+ {
163
+ "id": 21,
164
+ "x": 28.866638,
165
+ "y": 4.061113,
166
+ "fixed": false
167
+ },
168
+ {
169
+ "id": 22,
170
+ "x": 28.866638,
171
+ "y": 4.061113,
172
+ "fixed": false
173
+ }
174
+ ],
175
+ "geometries": [
176
+ {
177
+ "id": 1,
178
+ "type": "line",
179
+ "points": [
180
+ 0,
181
+ 1
182
+ ],
183
+ "construction": false
184
+ },
185
+ {
186
+ "id": 2,
187
+ "type": "line",
188
+ "points": [
189
+ 1,
190
+ 2
191
+ ],
192
+ "construction": false
193
+ },
194
+ {
195
+ "id": 3,
196
+ "type": "line",
197
+ "points": [
198
+ 2,
199
+ 3
200
+ ],
201
+ "construction": false
202
+ },
203
+ {
204
+ "id": 4,
205
+ "type": "line",
206
+ "points": [
207
+ 3,
208
+ 4
209
+ ],
210
+ "construction": false
211
+ },
212
+ {
213
+ "id": 5,
214
+ "type": "line",
215
+ "points": [
216
+ 0,
217
+ 4
218
+ ],
219
+ "construction": false
220
+ },
221
+ {
222
+ "id": 6,
223
+ "type": "circle",
224
+ "points": [
225
+ 5,
226
+ 6
227
+ ],
228
+ "construction": false
229
+ },
230
+ {
231
+ "id": 7,
232
+ "type": "line",
233
+ "points": [
234
+ 7,
235
+ 10
236
+ ],
237
+ "construction": false
238
+ },
239
+ {
240
+ "id": 8,
241
+ "type": "line",
242
+ "points": [
243
+ 11,
244
+ 8
245
+ ],
246
+ "construction": false
247
+ },
248
+ {
249
+ "id": 9,
250
+ "type": "line",
251
+ "points": [
252
+ 12,
253
+ 13
254
+ ],
255
+ "construction": false
256
+ },
257
+ {
258
+ "id": 10,
259
+ "type": "line",
260
+ "points": [
261
+ 14,
262
+ 9
263
+ ],
264
+ "construction": false
265
+ },
266
+ {
267
+ "id": 11,
268
+ "type": "line",
269
+ "points": [
270
+ 15,
271
+ 18
272
+ ],
273
+ "construction": false
274
+ },
275
+ {
276
+ "id": 12,
277
+ "type": "line",
278
+ "points": [
279
+ 19,
280
+ 16
281
+ ],
282
+ "construction": false
283
+ },
284
+ {
285
+ "id": 13,
286
+ "type": "line",
287
+ "points": [
288
+ 20,
289
+ 21
290
+ ],
291
+ "construction": false
292
+ },
293
+ {
294
+ "id": 14,
295
+ "type": "line",
296
+ "points": [
297
+ 22,
298
+ 17
299
+ ],
300
+ "construction": false
301
+ }
302
+ ],
303
+ "constraints": [
304
+ {
305
+ "id": 0,
306
+ "type": "⏚",
307
+ "points": [
308
+ 0
309
+ ],
310
+ "status": "solved",
311
+ "previousPointValues": "[{\"id\":0,\"x\":0,\"y\":0,\"fixed\":true}]"
312
+ },
313
+ {
314
+ "id": 1,
315
+ "type": "⟺",
316
+ "points": [
317
+ 1,
318
+ 2
319
+ ],
320
+ "labelX": 0,
321
+ "labelY": 0,
322
+ "displayStyle": "",
323
+ "value": 28,
324
+ "valueNeedsSetup": true,
325
+ "status": "solved",
326
+ "error": null,
327
+ "previousPointValues": "[{\"id\":1,\"x\":0,\"y\":19.999995,\"fixed\":false},{\"id\":2,\"x\":24.825992,\"y\":32.948741,\"fixed\":false}]"
328
+ },
329
+ {
330
+ "id": 2,
331
+ "type": "⟺",
332
+ "points": [
333
+ 2,
334
+ 3
335
+ ],
336
+ "labelX": 0,
337
+ "labelY": 0,
338
+ "displayStyle": "",
339
+ "value": 21.164067487084093,
340
+ "valueNeedsSetup": true,
341
+ "status": "solved",
342
+ "error": null,
343
+ "previousPointValues": "[{\"id\":2,\"x\":24.825992,\"y\":32.948741,\"fixed\":false},{\"id\":3,\"x\":37.117184,\"y\":15.719556,\"fixed\":false}]"
344
+ },
345
+ {
346
+ "id": 3,
347
+ "type": "│",
348
+ "points": [
349
+ 3,
350
+ 4
351
+ ],
352
+ "labelX": 0,
353
+ "labelY": 0,
354
+ "displayStyle": "",
355
+ "value": null,
356
+ "valueNeedsSetup": true,
357
+ "status": "solved",
358
+ "error": null,
359
+ "previousPointValues": "[{\"id\":3,\"x\":37.117184,\"y\":15.719556,\"fixed\":false},{\"id\":4,\"x\":37.117184,\"y\":0,\"fixed\":false}]"
360
+ },
361
+ {
362
+ "id": 4,
363
+ "type": "│",
364
+ "points": [
365
+ 0,
366
+ 1
367
+ ],
368
+ "labelX": 0,
369
+ "labelY": 0,
370
+ "displayStyle": "",
371
+ "value": null,
372
+ "valueNeedsSetup": true,
373
+ "status": "solved",
374
+ "error": null,
375
+ "previousPointValues": "[{\"id\":0,\"x\":0,\"y\":0,\"fixed\":true},{\"id\":1,\"x\":0,\"y\":19.999995,\"fixed\":false}]"
376
+ },
377
+ {
378
+ "id": 5,
379
+ "type": "━",
380
+ "points": [
381
+ 0,
382
+ 4
383
+ ],
384
+ "labelX": 0,
385
+ "labelY": 0,
386
+ "displayStyle": "",
387
+ "value": null,
388
+ "valueNeedsSetup": true,
389
+ "status": "solved",
390
+ "error": null,
391
+ "previousPointValues": "[{\"id\":0,\"x\":0,\"y\":0,\"fixed\":true},{\"id\":4,\"x\":37.117184,\"y\":0,\"fixed\":false}]"
392
+ },
393
+ {
394
+ "id": 6,
395
+ "type": "⟺",
396
+ "points": [
397
+ 0,
398
+ 1
399
+ ],
400
+ "labelX": 0,
401
+ "labelY": 0,
402
+ "displayStyle": "",
403
+ "value": 20,
404
+ "valueNeedsSetup": true,
405
+ "status": "solved",
406
+ "error": null,
407
+ "previousPointValues": "[{\"id\":0,\"x\":0,\"y\":0,\"fixed\":true},{\"id\":1,\"x\":0,\"y\":19.999995,\"fixed\":false}]"
408
+ },
409
+ {
410
+ "id": 7,
411
+ "type": "⟺",
412
+ "points": [
413
+ 0,
414
+ 4
415
+ ],
416
+ "labelX": 0,
417
+ "labelY": 0,
418
+ "displayStyle": "",
419
+ "value": 37.117188,
420
+ "valueNeedsSetup": true,
421
+ "status": "solved",
422
+ "error": null,
423
+ "previousPointValues": "[{\"id\":0,\"x\":0,\"y\":0,\"fixed\":true},{\"id\":4,\"x\":37.117184,\"y\":0,\"fixed\":false}]"
424
+ },
425
+ {
426
+ "id": 8,
427
+ "type": "≡",
428
+ "points": [
429
+ 7,
430
+ 9
431
+ ],
432
+ "status": "solved",
433
+ "error": null,
434
+ "previousPointValues": "[{\"id\":7,\"x\":2.696772,\"y\":14.465233,\"fixed\":false},{\"id\":9,\"x\":2.696772,\"y\":14.465233,\"fixed\":false}]"
435
+ },
436
+ {
437
+ "id": 9,
438
+ "type": "≡",
439
+ "points": [
440
+ 10,
441
+ 11
442
+ ],
443
+ "status": "solved",
444
+ "error": null,
445
+ "previousPointValues": "[{\"id\":10,\"x\":8.441377,\"y\":14.465233,\"fixed\":false},{\"id\":11,\"x\":8.441377,\"y\":14.465233,\"fixed\":false}]"
446
+ },
447
+ {
448
+ "id": 10,
449
+ "type": "≡",
450
+ "points": [
451
+ 8,
452
+ 12
453
+ ],
454
+ "status": "solved",
455
+ "error": null,
456
+ "previousPointValues": "[{\"id\":8,\"x\":8.441377,\"y\":3.358996,\"fixed\":false},{\"id\":12,\"x\":8.441377,\"y\":3.358996,\"fixed\":false}]"
457
+ },
458
+ {
459
+ "id": 11,
460
+ "type": "≡",
461
+ "points": [
462
+ 13,
463
+ 14
464
+ ],
465
+ "status": "solved",
466
+ "error": null,
467
+ "previousPointValues": "[{\"id\":13,\"x\":2.696772,\"y\":3.358996,\"fixed\":false},{\"id\":14,\"x\":2.696772,\"y\":3.358996,\"fixed\":false}]"
468
+ },
469
+ {
470
+ "id": 12,
471
+ "type": "⟂",
472
+ "points": [
473
+ 7,
474
+ 10,
475
+ 11,
476
+ 8
477
+ ],
478
+ "status": "solved",
479
+ "value": 90,
480
+ "previousPointValues": "[{\"id\":7,\"x\":2.696772,\"y\":14.465233,\"fixed\":false},{\"id\":10,\"x\":8.441377,\"y\":14.465233,\"fixed\":false},{\"id\":11,\"x\":8.441377,\"y\":14.465233,\"fixed\":false},{\"id\":8,\"x\":8.441377,\"y\":3.358996,\"fixed\":false}]",
481
+ "error": null
482
+ },
483
+ {
484
+ "id": 13,
485
+ "type": "⟂",
486
+ "points": [
487
+ 11,
488
+ 8,
489
+ 12,
490
+ 13
491
+ ],
492
+ "status": "solved",
493
+ "value": 90,
494
+ "previousPointValues": "[{\"id\":11,\"x\":8.441377,\"y\":14.465233,\"fixed\":false},{\"id\":8,\"x\":8.441377,\"y\":3.358996,\"fixed\":false},{\"id\":12,\"x\":8.441377,\"y\":3.358996,\"fixed\":false},{\"id\":13,\"x\":2.696772,\"y\":3.358996,\"fixed\":false}]",
495
+ "error": null
496
+ },
497
+ {
498
+ "id": 14,
499
+ "type": "⟂",
500
+ "points": [
501
+ 12,
502
+ 13,
503
+ 14,
504
+ 9
505
+ ],
506
+ "status": "solved",
507
+ "value": 90,
508
+ "previousPointValues": "[{\"id\":12,\"x\":8.441377,\"y\":3.358996,\"fixed\":false},{\"id\":13,\"x\":2.696772,\"y\":3.358996,\"fixed\":false},{\"id\":14,\"x\":2.696772,\"y\":3.358996,\"fixed\":false},{\"id\":9,\"x\":2.696772,\"y\":14.465233,\"fixed\":false}]",
509
+ "error": null
510
+ },
511
+ {
512
+ "id": 15,
513
+ "type": "≡",
514
+ "points": [
515
+ 15,
516
+ 17
517
+ ],
518
+ "status": "solved",
519
+ "error": null,
520
+ "previousPointValues": "[{\"id\":15,\"x\":28.866638,\"y\":8.912114,\"fixed\":false},{\"id\":17,\"x\":28.866638,\"y\":8.912114,\"fixed\":false}]"
521
+ },
522
+ {
523
+ "id": 16,
524
+ "type": "≡",
525
+ "points": [
526
+ 18,
527
+ 19
528
+ ],
529
+ "status": "solved",
530
+ "error": null,
531
+ "previousPointValues": "[{\"id\":18,\"x\":32.185746,\"y\":8.912114,\"fixed\":false},{\"id\":19,\"x\":32.185746,\"y\":8.912114,\"fixed\":false}]"
532
+ },
533
+ {
534
+ "id": 17,
535
+ "type": "≡",
536
+ "points": [
537
+ 16,
538
+ 20
539
+ ],
540
+ "status": "solved",
541
+ "error": null,
542
+ "previousPointValues": "[{\"id\":16,\"x\":32.185746,\"y\":4.061113,\"fixed\":false},{\"id\":20,\"x\":32.185746,\"y\":4.061113,\"fixed\":false}]"
543
+ },
544
+ {
545
+ "id": 18,
546
+ "type": "≡",
547
+ "points": [
548
+ 21,
549
+ 22
550
+ ],
551
+ "status": "solved",
552
+ "error": null,
553
+ "previousPointValues": "[{\"id\":21,\"x\":28.866638,\"y\":4.061113,\"fixed\":false},{\"id\":22,\"x\":28.866638,\"y\":4.061113,\"fixed\":false}]"
554
+ },
555
+ {
556
+ "id": 19,
557
+ "type": "⟂",
558
+ "points": [
559
+ 15,
560
+ 18,
561
+ 19,
562
+ 16
563
+ ],
564
+ "status": "solved",
565
+ "value": 90,
566
+ "previousPointValues": "[{\"id\":15,\"x\":28.866638,\"y\":8.912114,\"fixed\":false},{\"id\":18,\"x\":32.185746,\"y\":8.912114,\"fixed\":false},{\"id\":19,\"x\":32.185746,\"y\":8.912114,\"fixed\":false},{\"id\":16,\"x\":32.185746,\"y\":4.061113,\"fixed\":false}]",
567
+ "error": null
568
+ },
569
+ {
570
+ "id": 20,
571
+ "type": "⟂",
572
+ "points": [
573
+ 19,
574
+ 16,
575
+ 20,
576
+ 21
577
+ ],
578
+ "status": "solved",
579
+ "value": 90,
580
+ "previousPointValues": "[{\"id\":19,\"x\":32.185746,\"y\":8.912114,\"fixed\":false},{\"id\":16,\"x\":32.185746,\"y\":4.061113,\"fixed\":false},{\"id\":20,\"x\":32.185746,\"y\":4.061113,\"fixed\":false},{\"id\":21,\"x\":28.866638,\"y\":4.061113,\"fixed\":false}]",
581
+ "error": null
582
+ },
583
+ {
584
+ "id": 21,
585
+ "type": "⟂",
586
+ "points": [
587
+ 20,
588
+ 21,
589
+ 22,
590
+ 17
591
+ ],
592
+ "status": "solved",
593
+ "value": 90,
594
+ "previousPointValues": "[{\"id\":20,\"x\":32.185746,\"y\":4.061113,\"fixed\":false},{\"id\":21,\"x\":28.866638,\"y\":4.061113,\"fixed\":false},{\"id\":22,\"x\":28.866638,\"y\":4.061113,\"fixed\":false},{\"id\":17,\"x\":28.866638,\"y\":8.912114,\"fixed\":false}]",
595
+ "error": null
596
+ }
597
+ ]
598
+ },
599
+ "sketchDimOffsets": {
600
+ "1": {
601
+ "d": 7.719249922400918
602
+ },
603
+ "2": {
604
+ "d": 5.912559647659901
605
+ },
606
+ "6": {
607
+ "d": 4.984961958068299
608
+ },
609
+ "7": {
610
+ "d": -10.126940193522842
611
+ }
612
+ }
613
+ },
614
+ "lastRun": {
615
+ "ok": true,
616
+ "startedAt": 901551.5,
617
+ "endedAt": 901555,
618
+ "durationMs": 4,
619
+ "error": null
620
+ }
621
+ },
622
+ {
623
+ "type": "E",
624
+ "inputParams": {
625
+ "featureID": "E9",
626
+ "profile": "S8:PROFILE",
627
+ "distance": "37",
628
+ "boolean": {
629
+ "targets": [],
630
+ "operation": "NONE"
631
+ },
632
+ "distanceBack": "-18"
633
+ },
634
+ "persistentData": {},
635
+ "lastRun": {
636
+ "ok": true,
637
+ "startedAt": 901558.6999999881,
638
+ "endedAt": 901564.2999999821,
639
+ "durationMs": 6,
640
+ "error": null
641
+ }
642
+ }
643
+ ],
644
+ "idCounter": 11,
645
+ "expressions": "//Examples:\nx = 20 + 6; \ny = x * 2;"
646
+ }