diff --git a/docs/kcl/patternLinear2d.md b/docs/kcl/patternLinear2d.md index 8fc6b22f7..9910804d5 100644 --- a/docs/kcl/patternLinear2d.md +++ b/docs/kcl/patternLinear2d.md @@ -9,7 +9,7 @@ Repeat a 2-dimensional sketch along some dimension, with a dynamic amount of distance between each repetition, some specified number of times. ```js -patternLinear2d(data: LinearPattern2dData, sketch_set: SketchSet) -> [Sketch] +patternLinear2d(data: LinearPattern2dData, sketch_set: SketchSet, use_original?: bool) -> [Sketch] ``` @@ -19,6 +19,7 @@ patternLinear2d(data: LinearPattern2dData, sketch_set: SketchSet) -> [Sketch] |----------|------|-------------|----------| | `data` | [`LinearPattern2dData`](/docs/kcl/types/LinearPattern2dData) | Data for a linear pattern on a 2D sketch. | Yes | | `sketch_set` | [`SketchSet`](/docs/kcl/types/SketchSet) | A sketch or a group of sketches. | Yes | +| `use_original` | `bool` | | No | ### Returns diff --git a/docs/kcl/patternLinear3d.md b/docs/kcl/patternLinear3d.md index 791ae8f3a..f6b04f543 100644 --- a/docs/kcl/patternLinear3d.md +++ b/docs/kcl/patternLinear3d.md @@ -9,7 +9,7 @@ Repeat a 3-dimensional solid along a linear path, with a dynamic amount of distance between each repetition, some specified number of times. ```js -patternLinear3d(data: LinearPattern3dData, solid_set: SolidSet) -> [Solid] +patternLinear3d(data: LinearPattern3dData, solid_set: SolidSet, use_original?: bool) -> [Solid] ``` @@ -19,6 +19,7 @@ patternLinear3d(data: LinearPattern3dData, solid_set: SolidSet) -> [Solid] |----------|------|-------------|----------| | `data` | [`LinearPattern3dData`](/docs/kcl/types/LinearPattern3dData) | Data for a linear pattern on a 3D model. | Yes | | `solid_set` | [`SolidSet`](/docs/kcl/types/SolidSet) | A solid or a group of solids. | Yes | +| `use_original` | `bool` | | No | ### Returns diff --git a/docs/kcl/patternTransform.md b/docs/kcl/patternTransform.md index 8a057265d..95ea916ad 100644 --- a/docs/kcl/patternTransform.md +++ b/docs/kcl/patternTransform.md @@ -35,7 +35,7 @@ The transform function returns a transform object. All properties of the object - `rotation.origin` (either "local" i.e. rotate around its own center, "global" i.e. rotate around the scene's center, or a 3D point, defaults to "local") ```js -patternTransform(total_instances: integer, transform_function: FunctionParam, solid_set: SolidSet) -> [Solid] +patternTransform(total_instances: integer, transform_function: FunctionParam, solid_set: SolidSet, use_original?: bool) -> [Solid] ``` @@ -46,6 +46,7 @@ patternTransform(total_instances: integer, transform_function: FunctionParam, so | `total_instances` | `integer` | | Yes | | `transform_function` | `FunctionParam` | | Yes | | `solid_set` | [`SolidSet`](/docs/kcl/types/SolidSet) | A solid or a group of solids. | Yes | +| `use_original` | `bool` | | No | ### Returns diff --git a/docs/kcl/patternTransform2d.md b/docs/kcl/patternTransform2d.md index 353ce75b5..aa6286c29 100644 --- a/docs/kcl/patternTransform2d.md +++ b/docs/kcl/patternTransform2d.md @@ -9,7 +9,7 @@ Just like patternTransform, but works on 2D sketches not 3D solids. ```js -patternTransform2d(total_instances: integer, transform_function: FunctionParam, solid_set: SketchSet) -> [Sketch] +patternTransform2d(total_instances: integer, transform_function: FunctionParam, solid_set: SketchSet, use_original?: bool) -> [Sketch] ``` @@ -20,6 +20,7 @@ patternTransform2d(total_instances: integer, transform_function: FunctionParam, | `total_instances` | `integer` | | Yes | | `transform_function` | `FunctionParam` | | Yes | | `solid_set` | [`SketchSet`](/docs/kcl/types/SketchSet) | A sketch or a group of sketches. | Yes | +| `use_original` | `bool` | | No | ### Returns diff --git a/docs/kcl/std.json b/docs/kcl/std.json index 5818073cd..6ee66d556 100644 --- a/docs/kcl/std.json +++ b/docs/kcl/std.json @@ -1845,6 +1845,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -1893,6 +1894,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -3137,6 +3142,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -3185,6 +3191,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -5144,6 +5154,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -5192,6 +5203,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -6436,6 +6451,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -6484,6 +6500,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -6745,6 +6765,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -6793,6 +6814,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -7999,6 +8024,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -8047,6 +8073,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -9469,6 +9499,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -9517,6 +9548,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -9745,6 +9780,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -9793,6 +9829,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -10999,6 +11039,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -11047,6 +11088,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -11332,6 +11377,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -11380,6 +11426,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -12586,6 +12636,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -12634,6 +12685,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -14056,6 +14111,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -14104,6 +14160,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -14332,6 +14392,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -14380,6 +14441,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -15586,6 +15651,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -15634,6 +15700,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -15919,6 +15989,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -15967,6 +16038,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -17173,6 +17248,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -17221,6 +17297,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -18643,6 +18723,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -18691,6 +18772,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -18919,6 +19004,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -18967,6 +19053,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -20173,6 +20263,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -20221,6 +20312,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -21373,6 +21468,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -21421,6 +21517,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -22691,6 +22791,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -22739,6 +22840,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -24161,6 +24266,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -24209,6 +24315,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -24373,6 +24483,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -24421,6 +24532,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -25627,6 +25742,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -25675,6 +25791,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -25945,6 +26065,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -25993,6 +26114,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -27199,6 +27324,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -27247,6 +27373,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -28669,6 +28799,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -28717,6 +28848,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -28945,6 +29080,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -28993,6 +29129,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -30199,6 +30339,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -30247,6 +30388,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -30517,6 +30662,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -30565,6 +30711,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -31771,6 +31921,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -31819,6 +31970,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -33241,6 +33396,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -33289,6 +33445,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -33517,6 +33677,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -33565,6 +33726,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -34771,6 +34936,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -34819,6 +34985,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -35440,6 +35610,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -35488,6 +35659,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -37012,6 +37187,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -37060,6 +37236,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -38343,6 +38523,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -38391,6 +38572,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -39597,6 +39782,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -39645,6 +39831,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -41067,6 +41257,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -41115,6 +41306,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -41343,6 +41538,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -41391,6 +41587,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -42597,6 +42797,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -42645,6 +42846,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -42925,6 +43130,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -42973,6 +43179,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -44179,6 +44389,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -44227,6 +44438,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -45649,6 +45864,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -45697,6 +45913,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -45925,6 +46145,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -45973,6 +46194,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -47179,6 +47404,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -47227,6 +47453,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -48040,6 +48270,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -48088,6 +48319,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -49294,6 +49529,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -49342,6 +49578,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -50764,6 +51004,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -50812,6 +51053,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -51040,6 +51285,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -51088,6 +51334,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -52294,6 +52544,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -52342,6 +52593,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -54517,6 +54772,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -54565,6 +54821,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -56005,6 +56265,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -56053,6 +56314,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -56901,6 +57166,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -56949,6 +57215,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -58814,6 +59084,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -58862,6 +59133,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -60284,6 +60559,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -60332,6 +60608,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -61122,6 +61402,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -61170,6 +61451,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -62376,6 +62661,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -62424,6 +62710,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -63358,6 +63648,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -63406,6 +63697,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -64829,6 +65124,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -64877,6 +65173,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -65668,6 +65968,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -65716,6 +66017,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -66922,6 +67227,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -66970,6 +67276,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -67211,6 +67521,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -67259,6 +67570,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -68465,6 +68780,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -68513,6 +68829,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -69936,6 +70256,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -69984,6 +70305,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -70213,6 +70538,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -70261,6 +70587,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -71467,6 +71797,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -71515,6 +71846,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -71858,6 +72193,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "type", @@ -71913,6 +72249,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -73141,6 +73481,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -73189,6 +73530,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -74608,6 +74953,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -74656,6 +75002,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -75227,6 +75577,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -75275,6 +75626,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -78370,6 +78725,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -78418,6 +78774,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -79858,6 +80218,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -79906,6 +80267,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -80754,6 +81119,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -80802,6 +81168,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -87395,6 +87765,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -87443,6 +87814,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -88935,6 +89310,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -88983,6 +89359,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -90181,6 +90561,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "type", @@ -90236,6 +90617,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -91464,6 +91849,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -91512,6 +91898,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -91740,6 +92130,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -91788,6 +92179,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -92994,6 +93389,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -93042,6 +93438,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -93271,6 +93671,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -93319,6 +93720,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -94525,6 +94930,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -94573,6 +94979,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -95137,6 +95547,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -95185,6 +95596,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -96677,6 +97092,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -96725,6 +97141,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -98410,6 +98830,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -98458,6 +98879,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -99664,6 +100089,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -99712,6 +100138,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -99967,6 +100397,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -100015,6 +100446,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -101221,6 +101656,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -101269,6 +101705,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -101689,6 +102129,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -101737,6 +102178,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -102943,6 +103388,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -102991,6 +103437,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -104416,6 +104866,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -104464,6 +104915,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -105888,6 +106343,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -105936,6 +106392,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -107359,6 +107819,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -107407,6 +107868,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -107636,6 +108101,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -107684,6 +108150,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -108890,6 +109360,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -108938,6 +109409,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -109227,6 +109702,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -109275,6 +109751,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -110695,6 +111175,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -110743,6 +111224,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -112161,6 +112646,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -112209,6 +112695,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -113630,6 +114120,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -113678,6 +114169,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -115097,6 +115592,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -115145,6 +115641,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -116869,6 +117369,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -116917,6 +117418,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -119996,6 +120501,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -120044,6 +120550,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -122236,6 +122746,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -122284,6 +122795,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -124480,6 +124995,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -124528,6 +125044,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -126124,6 +126644,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "type", @@ -126179,6 +126700,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -127581,6 +128106,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -127629,6 +128155,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -127800,6 +128330,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -127848,6 +128379,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -129666,6 +130201,12 @@ "rotateDuplicates": { "description": "Whether or not to rotate the duplicates as they are copied.", "type": "boolean" + }, + "useOriginal": { + "description": "If the target being patterned is itself a pattern, then, should you use the original solid, or the pattern?", + "default": null, + "type": "boolean", + "nullable": true } } }, @@ -129689,6 +130230,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "type", @@ -129744,6 +130286,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -130972,6 +131518,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -131020,6 +131567,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -131255,6 +131806,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -131303,6 +131855,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -132767,6 +133323,12 @@ "rotateDuplicates": { "description": "Whether or not to rotate the duplicates as they are copied.", "type": "boolean" + }, + "useOriginal": { + "description": "If the target being patterned is itself a pattern, then, should you use the original solid, or the pattern?", + "default": null, + "type": "boolean", + "nullable": true } } }, @@ -133128,6 +133690,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -133176,6 +133739,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -134674,6 +135241,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -134722,6 +135290,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -135884,6 +136456,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "type", @@ -135939,6 +136512,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -137167,6 +137744,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -137215,6 +137793,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -137429,6 +138011,1476 @@ "required": true, "includeInSnippet": true, "labelRequired": true + }, + { + "name": "use_original", + "type": "bool", + "schema": { + "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", + "title": "Nullable_Boolean", + "type": "boolean", + "nullable": true, + "definitions": { + "Path": { + "description": "A path.", + "oneOf": [ + { + "description": "A path that goes to a point.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "ToPoint" + ] + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A arc that is tangential to the last path segment that goes to a point", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "TangentialArcTo" + ] + }, + "center": { + "description": "the arc's center", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "ccw": { + "description": "arc's direction", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A arc that is tangential to the last path segment", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "TangentialArc" + ] + }, + "center": { + "description": "the arc's center", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "ccw": { + "description": "arc's direction", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "a complete arc", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "radius", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Circle" + ] + }, + "center": { + "description": "the arc's center", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "radius": { + "description": "the arc's radius", + "type": "number", + "format": "double" + }, + "ccw": { + "description": "arc's direction This is used to compute the tangential angle.", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A path that is horizontal.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type", + "x" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Horizontal" + ] + }, + "x": { + "description": "The x coordinate.", + "type": "number", + "format": "double" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "An angled line to.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "AngledLineTo" + ] + }, + "x": { + "description": "The x coordinate.", + "type": "number", + "format": "double", + "nullable": true + }, + "y": { + "description": "The y coordinate.", + "type": "number", + "format": "double", + "nullable": true + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Base" + ] + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A circular arc, not necessarily tangential to the current point.", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "radius", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Arc" + ] + }, + "center": { + "description": "Center of the circle that this arc is drawn on.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "radius": { + "description": "Radius of the circle that this arc is drawn on.", + "type": "number", + "format": "double" + }, + "ccw": { + "description": "True if the arc is counterclockwise.", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + } + ] + }, + "TagDeclarator": { + "type": "object", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "string" + }, + "digest": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32, + "nullable": true + }, + "start": { + "type": "integer", + "format": "uint", + "minimum": 0.0 + }, + "end": { + "type": "integer", + "format": "uint", + "minimum": 0.0 + } + } + }, + "GeoMeta": { + "description": "Geometry metadata.", + "type": "object", + "required": [ + "id", + "sourceRange" + ], + "properties": { + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + "SourceRange": { + "description": "The first two items are the start and end points (byte offsets from the start of the file). The third item is whether the source range belongs to the 'main' file, i.e., the file currently being rendered/displayed in the editor.", + "type": "array", + "items": { + "type": "integer", + "format": "uint", + "minimum": 0.0 + }, + "maxItems": 3, + "minItems": 3 + }, + "SketchSurface": { + "description": "A sketch type.", + "oneOf": [ + { + "description": "A plane.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "id", + "origin", + "type", + "units", + "value", + "xAxis", + "yAxis", + "zAxis" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "plane" + ] + }, + "id": { + "description": "The id of the plane.", + "type": "string", + "format": "uuid" + }, + "artifactId": { + "description": "The artifact ID.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "value": { + "$ref": "#/components/schemas/PlaneType" + }, + "origin": { + "description": "Origin of the plane.", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "xAxis": { + "description": "What should the plane’s X axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "yAxis": { + "description": "What should the plane’s Y axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "zAxis": { + "description": "The z-axis (normal).", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + { + "description": "A face.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "id", + "solid", + "type", + "units", + "value", + "xAxis", + "yAxis", + "zAxis" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "face" + ] + }, + "id": { + "description": "The id of the face.", + "type": "string", + "format": "uuid" + }, + "artifactId": { + "description": "The artifact ID.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "value": { + "description": "The tag of the face.", + "type": "string" + }, + "xAxis": { + "description": "What should the face’s X axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "yAxis": { + "description": "What should the face’s Y axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "zAxis": { + "description": "The z-axis (normal).", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "solid": { + "description": "The solid the face is on.", + "allOf": [ + { + "$ref": "#/components/schemas/Solid" + } + ] + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + } + ] + }, + "ArtifactId": { + "type": "string", + "format": "uuid" + }, + "PlaneType": { + "description": "Type for a plane.", + "oneOf": [ + { + "type": "string", + "enum": [ + "XY", + "XZ", + "YZ" + ] + }, + { + "description": "A custom plane.", + "type": "string", + "enum": [ + "Custom" + ] + } + ] + }, + "Point3d": { + "type": "object", + "required": [ + "x", + "y", + "z" + ], + "properties": { + "x": { + "type": "number", + "format": "double" + }, + "y": { + "type": "number", + "format": "double" + }, + "z": { + "type": "number", + "format": "double" + } + } + }, + "UnitLen": { + "oneOf": [ + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Mm" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Cm" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "M" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Inches" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Feet" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Yards" + ] + } + } + } + ] + }, + "Metadata": { + "description": "Metadata.", + "type": "object", + "required": [ + "sourceRange" + ], + "properties": { + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + "Solid": { + "description": "An solid is a collection of extrude surfaces.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "height", + "id", + "sketch", + "units", + "value" + ], + "properties": { + "id": { + "description": "The id of the solid.", + "type": "string", + "format": "uuid" + }, + "artifactId": { + "description": "The artifact ID of the solid. Unlike `id`, this doesn't change.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "value": { + "description": "The extrude surfaces.", + "type": "array", + "items": { + "$ref": "#/components/schemas/ExtrudeSurface" + } + }, + "sketch": { + "description": "The sketch.", + "allOf": [ + { + "$ref": "#/components/schemas/Sketch" + } + ] + }, + "height": { + "description": "The height of the solid.", + "type": "number", + "format": "double" + }, + "startCapId": { + "description": "The id of the extrusion start cap", + "type": "string", + "format": "uuid", + "nullable": true + }, + "endCapId": { + "description": "The id of the extrusion end cap", + "type": "string", + "format": "uuid", + "nullable": true + }, + "edgeCuts": { + "description": "Chamfers or fillets on this solid.", + "type": "array", + "items": { + "$ref": "#/components/schemas/EdgeCut" + } + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "description": "Metadata.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + "ExtrudeSurface": { + "description": "An extrude surface.", + "oneOf": [ + { + "description": "An extrude plane.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "extrudePlane" + ] + }, + "faceId": { + "description": "The face id for the extrude plane.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + { + "description": "An extruded arc.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "extrudeArc" + ] + }, + "faceId": { + "description": "The face id for the extrude plane.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + { + "description": "Geometry metadata.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "chamfer" + ] + }, + "faceId": { + "description": "The id for the chamfer surface.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + { + "description": "Geometry metadata.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "fillet" + ] + }, + "faceId": { + "description": "The id for the fillet surface.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + } + ] + }, + "Sketch": { + "description": "A sketch is a collection of paths.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "id", + "on", + "originalId", + "paths", + "start", + "units" + ], + "properties": { + "id": { + "description": "The id of the sketch (this will change when the engine's reference to it changes).", + "type": "string", + "format": "uuid" + }, + "paths": { + "description": "The paths in the sketch.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Path" + } + }, + "on": { + "description": "What the sketch is on (can be a plane or a face).", + "allOf": [ + { + "$ref": "#/components/schemas/SketchSurface" + } + ] + }, + "start": { + "description": "The starting path.", + "allOf": [ + { + "$ref": "#/components/schemas/BasePath" + } + ] + }, + "tags": { + "description": "Tag identifiers that have been declared in this sketch.", + "type": "object", + "additionalProperties": { + "$ref": "#/components/schemas/TagIdentifier" + } + }, + "artifactId": { + "description": "The original id of the sketch. This stays the same even if the sketch is is sketched on face etc.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "originalId": { + "type": "string", + "format": "uuid" + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "description": "Metadata.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to" + ], + "properties": { + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + "TagIdentifier": { + "type": "object", + "required": [ + "__meta", + "value" + ], + "properties": { + "value": { + "type": "string" + }, + "info": { + "allOf": [ + { + "$ref": "#/components/schemas/TagEngineInfo" + } + ], + "nullable": true + }, + "__meta": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + "TagEngineInfo": { + "description": "Engine information for a tag.", + "type": "object", + "required": [ + "id", + "sketch" + ], + "properties": { + "id": { + "description": "The id of the tagged object.", + "type": "string", + "format": "uuid" + }, + "sketch": { + "description": "The sketch the tag is on.", + "type": "string", + "format": "uuid" + }, + "path": { + "description": "The path the tag is on.", + "allOf": [ + { + "$ref": "#/components/schemas/Path" + } + ], + "nullable": true + }, + "surface": { + "description": "The surface information for the tag.", + "allOf": [ + { + "$ref": "#/components/schemas/ExtrudeSurface" + } + ], + "nullable": true + } + } + }, + "EdgeCut": { + "description": "A fillet or a chamfer.", + "oneOf": [ + { + "description": "A fillet.", + "type": "object", + "required": [ + "edgeId", + "id", + "radius", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "fillet" + ] + }, + "id": { + "description": "The id of the engine command that called this fillet.", + "type": "string", + "format": "uuid" + }, + "radius": { + "type": "number", + "format": "double" + }, + "edgeId": { + "description": "The engine id of the edge to fillet.", + "type": "string", + "format": "uuid" + }, + "tag": { + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + } + } + }, + { + "description": "A chamfer.", + "type": "object", + "required": [ + "edgeId", + "id", + "length", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "chamfer" + ] + }, + "id": { + "description": "The id of the engine command that called this chamfer.", + "type": "string", + "format": "uuid" + }, + "length": { + "type": "number", + "format": "double" + }, + "edgeId": { + "description": "The engine id of the edge to chamfer.", + "type": "string", + "format": "uuid" + }, + "tag": { + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + } + } + } + ] + } + } + }, + "required": false, + "labelRequired": true } ], "returnValue": { @@ -137450,6 +139502,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -137498,6 +139551,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -139307,6 +141364,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -139355,6 +141413,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -140523,6 +142585,1476 @@ "required": true, "includeInSnippet": true, "labelRequired": true + }, + { + "name": "use_original", + "type": "bool", + "schema": { + "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", + "title": "Nullable_Boolean", + "type": "boolean", + "nullable": true, + "definitions": { + "ArtifactId": { + "type": "string", + "format": "uuid" + }, + "ExtrudeSurface": { + "description": "An extrude surface.", + "oneOf": [ + { + "description": "An extrude plane.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "extrudePlane" + ] + }, + "faceId": { + "description": "The face id for the extrude plane.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + { + "description": "An extruded arc.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "extrudeArc" + ] + }, + "faceId": { + "description": "The face id for the extrude plane.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + { + "description": "Geometry metadata.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "chamfer" + ] + }, + "faceId": { + "description": "The id for the chamfer surface.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + { + "description": "Geometry metadata.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "fillet" + ] + }, + "faceId": { + "description": "The id for the fillet surface.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + } + ] + }, + "TagDeclarator": { + "type": "object", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "string" + }, + "digest": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32, + "nullable": true + }, + "start": { + "type": "integer", + "format": "uint", + "minimum": 0.0 + }, + "end": { + "type": "integer", + "format": "uint", + "minimum": 0.0 + } + } + }, + "SourceRange": { + "description": "The first two items are the start and end points (byte offsets from the start of the file). The third item is whether the source range belongs to the 'main' file, i.e., the file currently being rendered/displayed in the editor.", + "type": "array", + "items": { + "type": "integer", + "format": "uint", + "minimum": 0.0 + }, + "maxItems": 3, + "minItems": 3 + }, + "Sketch": { + "description": "A sketch is a collection of paths.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "id", + "on", + "originalId", + "paths", + "start", + "units" + ], + "properties": { + "id": { + "description": "The id of the sketch (this will change when the engine's reference to it changes).", + "type": "string", + "format": "uuid" + }, + "paths": { + "description": "The paths in the sketch.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Path" + } + }, + "on": { + "description": "What the sketch is on (can be a plane or a face).", + "allOf": [ + { + "$ref": "#/components/schemas/SketchSurface" + } + ] + }, + "start": { + "description": "The starting path.", + "allOf": [ + { + "$ref": "#/components/schemas/BasePath" + } + ] + }, + "tags": { + "description": "Tag identifiers that have been declared in this sketch.", + "type": "object", + "additionalProperties": { + "$ref": "#/components/schemas/TagIdentifier" + } + }, + "artifactId": { + "description": "The original id of the sketch. This stays the same even if the sketch is is sketched on face etc.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "originalId": { + "type": "string", + "format": "uuid" + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "description": "Metadata.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + "Path": { + "description": "A path.", + "oneOf": [ + { + "description": "A path that goes to a point.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "ToPoint" + ] + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A arc that is tangential to the last path segment that goes to a point", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "TangentialArcTo" + ] + }, + "center": { + "description": "the arc's center", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "ccw": { + "description": "arc's direction", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A arc that is tangential to the last path segment", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "TangentialArc" + ] + }, + "center": { + "description": "the arc's center", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "ccw": { + "description": "arc's direction", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "a complete arc", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "radius", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Circle" + ] + }, + "center": { + "description": "the arc's center", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "radius": { + "description": "the arc's radius", + "type": "number", + "format": "double" + }, + "ccw": { + "description": "arc's direction This is used to compute the tangential angle.", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A path that is horizontal.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type", + "x" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Horizontal" + ] + }, + "x": { + "description": "The x coordinate.", + "type": "number", + "format": "double" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "An angled line to.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "AngledLineTo" + ] + }, + "x": { + "description": "The x coordinate.", + "type": "number", + "format": "double", + "nullable": true + }, + "y": { + "description": "The y coordinate.", + "type": "number", + "format": "double", + "nullable": true + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Base" + ] + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A circular arc, not necessarily tangential to the current point.", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "radius", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Arc" + ] + }, + "center": { + "description": "Center of the circle that this arc is drawn on.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "radius": { + "description": "Radius of the circle that this arc is drawn on.", + "type": "number", + "format": "double" + }, + "ccw": { + "description": "True if the arc is counterclockwise.", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + } + ] + }, + "GeoMeta": { + "description": "Geometry metadata.", + "type": "object", + "required": [ + "id", + "sourceRange" + ], + "properties": { + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + "SketchSurface": { + "description": "A sketch type.", + "oneOf": [ + { + "description": "A plane.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "id", + "origin", + "type", + "units", + "value", + "xAxis", + "yAxis", + "zAxis" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "plane" + ] + }, + "id": { + "description": "The id of the plane.", + "type": "string", + "format": "uuid" + }, + "artifactId": { + "description": "The artifact ID.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "value": { + "$ref": "#/components/schemas/PlaneType" + }, + "origin": { + "description": "Origin of the plane.", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "xAxis": { + "description": "What should the plane’s X axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "yAxis": { + "description": "What should the plane’s Y axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "zAxis": { + "description": "The z-axis (normal).", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + { + "description": "A face.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "id", + "solid", + "type", + "units", + "value", + "xAxis", + "yAxis", + "zAxis" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "face" + ] + }, + "id": { + "description": "The id of the face.", + "type": "string", + "format": "uuid" + }, + "artifactId": { + "description": "The artifact ID.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "value": { + "description": "The tag of the face.", + "type": "string" + }, + "xAxis": { + "description": "What should the face’s X axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "yAxis": { + "description": "What should the face’s Y axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "zAxis": { + "description": "The z-axis (normal).", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "solid": { + "description": "The solid the face is on.", + "allOf": [ + { + "$ref": "#/components/schemas/Solid" + } + ] + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + } + ] + }, + "PlaneType": { + "description": "Type for a plane.", + "oneOf": [ + { + "type": "string", + "enum": [ + "XY", + "XZ", + "YZ" + ] + }, + { + "description": "A custom plane.", + "type": "string", + "enum": [ + "Custom" + ] + } + ] + }, + "Point3d": { + "type": "object", + "required": [ + "x", + "y", + "z" + ], + "properties": { + "x": { + "type": "number", + "format": "double" + }, + "y": { + "type": "number", + "format": "double" + }, + "z": { + "type": "number", + "format": "double" + } + } + }, + "UnitLen": { + "oneOf": [ + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Mm" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Cm" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "M" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Inches" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Feet" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Yards" + ] + } + } + } + ] + }, + "Metadata": { + "description": "Metadata.", + "type": "object", + "required": [ + "sourceRange" + ], + "properties": { + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + "Solid": { + "description": "An solid is a collection of extrude surfaces.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "height", + "id", + "sketch", + "units", + "value" + ], + "properties": { + "id": { + "description": "The id of the solid.", + "type": "string", + "format": "uuid" + }, + "artifactId": { + "description": "The artifact ID of the solid. Unlike `id`, this doesn't change.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "value": { + "description": "The extrude surfaces.", + "type": "array", + "items": { + "$ref": "#/components/schemas/ExtrudeSurface" + } + }, + "sketch": { + "description": "The sketch.", + "allOf": [ + { + "$ref": "#/components/schemas/Sketch" + } + ] + }, + "height": { + "description": "The height of the solid.", + "type": "number", + "format": "double" + }, + "startCapId": { + "description": "The id of the extrusion start cap", + "type": "string", + "format": "uuid", + "nullable": true + }, + "endCapId": { + "description": "The id of the extrusion end cap", + "type": "string", + "format": "uuid", + "nullable": true + }, + "edgeCuts": { + "description": "Chamfers or fillets on this solid.", + "type": "array", + "items": { + "$ref": "#/components/schemas/EdgeCut" + } + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "description": "Metadata.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + "EdgeCut": { + "description": "A fillet or a chamfer.", + "oneOf": [ + { + "description": "A fillet.", + "type": "object", + "required": [ + "edgeId", + "id", + "radius", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "fillet" + ] + }, + "id": { + "description": "The id of the engine command that called this fillet.", + "type": "string", + "format": "uuid" + }, + "radius": { + "type": "number", + "format": "double" + }, + "edgeId": { + "description": "The engine id of the edge to fillet.", + "type": "string", + "format": "uuid" + }, + "tag": { + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + } + } + }, + { + "description": "A chamfer.", + "type": "object", + "required": [ + "edgeId", + "id", + "length", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "chamfer" + ] + }, + "id": { + "description": "The id of the engine command that called this chamfer.", + "type": "string", + "format": "uuid" + }, + "length": { + "type": "number", + "format": "double" + }, + "edgeId": { + "description": "The engine id of the edge to chamfer.", + "type": "string", + "format": "uuid" + }, + "tag": { + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + } + } + } + ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to" + ], + "properties": { + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + "TagIdentifier": { + "type": "object", + "required": [ + "__meta", + "value" + ], + "properties": { + "value": { + "type": "string" + }, + "info": { + "allOf": [ + { + "$ref": "#/components/schemas/TagEngineInfo" + } + ], + "nullable": true + }, + "__meta": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + "TagEngineInfo": { + "description": "Engine information for a tag.", + "type": "object", + "required": [ + "id", + "sketch" + ], + "properties": { + "id": { + "description": "The id of the tagged object.", + "type": "string", + "format": "uuid" + }, + "sketch": { + "description": "The sketch the tag is on.", + "type": "string", + "format": "uuid" + }, + "path": { + "description": "The path the tag is on.", + "allOf": [ + { + "$ref": "#/components/schemas/Path" + } + ], + "nullable": true + }, + "surface": { + "description": "The surface information for the tag.", + "allOf": [ + { + "$ref": "#/components/schemas/ExtrudeSurface" + } + ], + "nullable": true + } + } + } + } + }, + "required": false, + "labelRequired": true } ], "returnValue": { @@ -140853,6 +144385,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -140901,6 +144434,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -142386,6 +145923,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -142434,6 +145972,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -143602,6 +147144,1476 @@ "required": true, "includeInSnippet": true, "labelRequired": true + }, + { + "name": "use_original", + "type": "bool", + "schema": { + "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", + "title": "Nullable_Boolean", + "type": "boolean", + "nullable": true, + "definitions": { + "ArtifactId": { + "type": "string", + "format": "uuid" + }, + "ExtrudeSurface": { + "description": "An extrude surface.", + "oneOf": [ + { + "description": "An extrude plane.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "extrudePlane" + ] + }, + "faceId": { + "description": "The face id for the extrude plane.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + { + "description": "An extruded arc.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "extrudeArc" + ] + }, + "faceId": { + "description": "The face id for the extrude plane.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + { + "description": "Geometry metadata.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "chamfer" + ] + }, + "faceId": { + "description": "The id for the chamfer surface.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + { + "description": "Geometry metadata.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "fillet" + ] + }, + "faceId": { + "description": "The id for the fillet surface.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + } + ] + }, + "TagDeclarator": { + "type": "object", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "string" + }, + "digest": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32, + "nullable": true + }, + "start": { + "type": "integer", + "format": "uint", + "minimum": 0.0 + }, + "end": { + "type": "integer", + "format": "uint", + "minimum": 0.0 + } + } + }, + "SourceRange": { + "description": "The first two items are the start and end points (byte offsets from the start of the file). The third item is whether the source range belongs to the 'main' file, i.e., the file currently being rendered/displayed in the editor.", + "type": "array", + "items": { + "type": "integer", + "format": "uint", + "minimum": 0.0 + }, + "maxItems": 3, + "minItems": 3 + }, + "Sketch": { + "description": "A sketch is a collection of paths.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "id", + "on", + "originalId", + "paths", + "start", + "units" + ], + "properties": { + "id": { + "description": "The id of the sketch (this will change when the engine's reference to it changes).", + "type": "string", + "format": "uuid" + }, + "paths": { + "description": "The paths in the sketch.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Path" + } + }, + "on": { + "description": "What the sketch is on (can be a plane or a face).", + "allOf": [ + { + "$ref": "#/components/schemas/SketchSurface" + } + ] + }, + "start": { + "description": "The starting path.", + "allOf": [ + { + "$ref": "#/components/schemas/BasePath" + } + ] + }, + "tags": { + "description": "Tag identifiers that have been declared in this sketch.", + "type": "object", + "additionalProperties": { + "$ref": "#/components/schemas/TagIdentifier" + } + }, + "artifactId": { + "description": "The original id of the sketch. This stays the same even if the sketch is is sketched on face etc.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "originalId": { + "type": "string", + "format": "uuid" + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "description": "Metadata.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + "Path": { + "description": "A path.", + "oneOf": [ + { + "description": "A path that goes to a point.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "ToPoint" + ] + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A arc that is tangential to the last path segment that goes to a point", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "TangentialArcTo" + ] + }, + "center": { + "description": "the arc's center", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "ccw": { + "description": "arc's direction", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A arc that is tangential to the last path segment", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "TangentialArc" + ] + }, + "center": { + "description": "the arc's center", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "ccw": { + "description": "arc's direction", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "a complete arc", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "radius", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Circle" + ] + }, + "center": { + "description": "the arc's center", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "radius": { + "description": "the arc's radius", + "type": "number", + "format": "double" + }, + "ccw": { + "description": "arc's direction This is used to compute the tangential angle.", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A path that is horizontal.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type", + "x" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Horizontal" + ] + }, + "x": { + "description": "The x coordinate.", + "type": "number", + "format": "double" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "An angled line to.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "AngledLineTo" + ] + }, + "x": { + "description": "The x coordinate.", + "type": "number", + "format": "double", + "nullable": true + }, + "y": { + "description": "The y coordinate.", + "type": "number", + "format": "double", + "nullable": true + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Base" + ] + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A circular arc, not necessarily tangential to the current point.", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "radius", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Arc" + ] + }, + "center": { + "description": "Center of the circle that this arc is drawn on.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "radius": { + "description": "Radius of the circle that this arc is drawn on.", + "type": "number", + "format": "double" + }, + "ccw": { + "description": "True if the arc is counterclockwise.", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + } + ] + }, + "GeoMeta": { + "description": "Geometry metadata.", + "type": "object", + "required": [ + "id", + "sourceRange" + ], + "properties": { + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + "SketchSurface": { + "description": "A sketch type.", + "oneOf": [ + { + "description": "A plane.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "id", + "origin", + "type", + "units", + "value", + "xAxis", + "yAxis", + "zAxis" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "plane" + ] + }, + "id": { + "description": "The id of the plane.", + "type": "string", + "format": "uuid" + }, + "artifactId": { + "description": "The artifact ID.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "value": { + "$ref": "#/components/schemas/PlaneType" + }, + "origin": { + "description": "Origin of the plane.", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "xAxis": { + "description": "What should the plane’s X axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "yAxis": { + "description": "What should the plane’s Y axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "zAxis": { + "description": "The z-axis (normal).", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + { + "description": "A face.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "id", + "solid", + "type", + "units", + "value", + "xAxis", + "yAxis", + "zAxis" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "face" + ] + }, + "id": { + "description": "The id of the face.", + "type": "string", + "format": "uuid" + }, + "artifactId": { + "description": "The artifact ID.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "value": { + "description": "The tag of the face.", + "type": "string" + }, + "xAxis": { + "description": "What should the face’s X axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "yAxis": { + "description": "What should the face’s Y axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "zAxis": { + "description": "The z-axis (normal).", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "solid": { + "description": "The solid the face is on.", + "allOf": [ + { + "$ref": "#/components/schemas/Solid" + } + ] + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + } + ] + }, + "PlaneType": { + "description": "Type for a plane.", + "oneOf": [ + { + "type": "string", + "enum": [ + "XY", + "XZ", + "YZ" + ] + }, + { + "description": "A custom plane.", + "type": "string", + "enum": [ + "Custom" + ] + } + ] + }, + "Point3d": { + "type": "object", + "required": [ + "x", + "y", + "z" + ], + "properties": { + "x": { + "type": "number", + "format": "double" + }, + "y": { + "type": "number", + "format": "double" + }, + "z": { + "type": "number", + "format": "double" + } + } + }, + "UnitLen": { + "oneOf": [ + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Mm" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Cm" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "M" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Inches" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Feet" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Yards" + ] + } + } + } + ] + }, + "Metadata": { + "description": "Metadata.", + "type": "object", + "required": [ + "sourceRange" + ], + "properties": { + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + "Solid": { + "description": "An solid is a collection of extrude surfaces.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "height", + "id", + "sketch", + "units", + "value" + ], + "properties": { + "id": { + "description": "The id of the solid.", + "type": "string", + "format": "uuid" + }, + "artifactId": { + "description": "The artifact ID of the solid. Unlike `id`, this doesn't change.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "value": { + "description": "The extrude surfaces.", + "type": "array", + "items": { + "$ref": "#/components/schemas/ExtrudeSurface" + } + }, + "sketch": { + "description": "The sketch.", + "allOf": [ + { + "$ref": "#/components/schemas/Sketch" + } + ] + }, + "height": { + "description": "The height of the solid.", + "type": "number", + "format": "double" + }, + "startCapId": { + "description": "The id of the extrusion start cap", + "type": "string", + "format": "uuid", + "nullable": true + }, + "endCapId": { + "description": "The id of the extrusion end cap", + "type": "string", + "format": "uuid", + "nullable": true + }, + "edgeCuts": { + "description": "Chamfers or fillets on this solid.", + "type": "array", + "items": { + "$ref": "#/components/schemas/EdgeCut" + } + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "description": "Metadata.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + "EdgeCut": { + "description": "A fillet or a chamfer.", + "oneOf": [ + { + "description": "A fillet.", + "type": "object", + "required": [ + "edgeId", + "id", + "radius", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "fillet" + ] + }, + "id": { + "description": "The id of the engine command that called this fillet.", + "type": "string", + "format": "uuid" + }, + "radius": { + "type": "number", + "format": "double" + }, + "edgeId": { + "description": "The engine id of the edge to fillet.", + "type": "string", + "format": "uuid" + }, + "tag": { + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + } + } + }, + { + "description": "A chamfer.", + "type": "object", + "required": [ + "edgeId", + "id", + "length", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "chamfer" + ] + }, + "id": { + "description": "The id of the engine command that called this chamfer.", + "type": "string", + "format": "uuid" + }, + "length": { + "type": "number", + "format": "double" + }, + "edgeId": { + "description": "The engine id of the edge to chamfer.", + "type": "string", + "format": "uuid" + }, + "tag": { + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + } + } + } + ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to" + ], + "properties": { + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + "TagIdentifier": { + "type": "object", + "required": [ + "__meta", + "value" + ], + "properties": { + "value": { + "type": "string" + }, + "info": { + "allOf": [ + { + "$ref": "#/components/schemas/TagEngineInfo" + } + ], + "nullable": true + }, + "__meta": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + "TagEngineInfo": { + "description": "Engine information for a tag.", + "type": "object", + "required": [ + "id", + "sketch" + ], + "properties": { + "id": { + "description": "The id of the tagged object.", + "type": "string", + "format": "uuid" + }, + "sketch": { + "description": "The sketch the tag is on.", + "type": "string", + "format": "uuid" + }, + "path": { + "description": "The path the tag is on.", + "allOf": [ + { + "$ref": "#/components/schemas/Path" + } + ], + "nullable": true + }, + "surface": { + "description": "The surface information for the tag.", + "allOf": [ + { + "$ref": "#/components/schemas/ExtrudeSurface" + } + ], + "nullable": true + } + } + } + } + }, + "required": false, + "labelRequired": true } ], "returnValue": { @@ -143932,6 +148944,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -143980,6 +148993,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -145132,6 +150149,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "type", @@ -145187,6 +150205,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -146415,6 +151437,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -146463,6 +151486,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -146677,6 +151704,1476 @@ "required": true, "includeInSnippet": true, "labelRequired": true + }, + { + "name": "use_original", + "type": "bool", + "schema": { + "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", + "title": "Nullable_Boolean", + "type": "boolean", + "nullable": true, + "definitions": { + "Path": { + "description": "A path.", + "oneOf": [ + { + "description": "A path that goes to a point.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "ToPoint" + ] + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A arc that is tangential to the last path segment that goes to a point", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "TangentialArcTo" + ] + }, + "center": { + "description": "the arc's center", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "ccw": { + "description": "arc's direction", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A arc that is tangential to the last path segment", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "TangentialArc" + ] + }, + "center": { + "description": "the arc's center", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "ccw": { + "description": "arc's direction", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "a complete arc", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "radius", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Circle" + ] + }, + "center": { + "description": "the arc's center", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "radius": { + "description": "the arc's radius", + "type": "number", + "format": "double" + }, + "ccw": { + "description": "arc's direction This is used to compute the tangential angle.", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A path that is horizontal.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type", + "x" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Horizontal" + ] + }, + "x": { + "description": "The x coordinate.", + "type": "number", + "format": "double" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "An angled line to.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "AngledLineTo" + ] + }, + "x": { + "description": "The x coordinate.", + "type": "number", + "format": "double", + "nullable": true + }, + "y": { + "description": "The y coordinate.", + "type": "number", + "format": "double", + "nullable": true + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Base" + ] + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + { + "description": "A circular arc, not necessarily tangential to the current point.", + "type": "object", + "required": [ + "__geoMeta", + "ccw", + "center", + "from", + "radius", + "to", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Arc" + ] + }, + "center": { + "description": "Center of the circle that this arc is drawn on.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "radius": { + "description": "Radius of the circle that this arc is drawn on.", + "type": "number", + "format": "double" + }, + "ccw": { + "description": "True if the arc is counterclockwise.", + "type": "boolean" + }, + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + } + ] + }, + "TagDeclarator": { + "type": "object", + "required": [ + "value" + ], + "properties": { + "value": { + "type": "string" + }, + "digest": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32, + "nullable": true + }, + "start": { + "type": "integer", + "format": "uint", + "minimum": 0.0 + }, + "end": { + "type": "integer", + "format": "uint", + "minimum": 0.0 + } + } + }, + "GeoMeta": { + "description": "Geometry metadata.", + "type": "object", + "required": [ + "id", + "sourceRange" + ], + "properties": { + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + "SourceRange": { + "description": "The first two items are the start and end points (byte offsets from the start of the file). The third item is whether the source range belongs to the 'main' file, i.e., the file currently being rendered/displayed in the editor.", + "type": "array", + "items": { + "type": "integer", + "format": "uint", + "minimum": 0.0 + }, + "maxItems": 3, + "minItems": 3 + }, + "SketchSurface": { + "description": "A sketch type.", + "oneOf": [ + { + "description": "A plane.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "id", + "origin", + "type", + "units", + "value", + "xAxis", + "yAxis", + "zAxis" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "plane" + ] + }, + "id": { + "description": "The id of the plane.", + "type": "string", + "format": "uuid" + }, + "artifactId": { + "description": "The artifact ID.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "value": { + "$ref": "#/components/schemas/PlaneType" + }, + "origin": { + "description": "Origin of the plane.", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "xAxis": { + "description": "What should the plane’s X axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "yAxis": { + "description": "What should the plane’s Y axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "zAxis": { + "description": "The z-axis (normal).", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + { + "description": "A face.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "id", + "solid", + "type", + "units", + "value", + "xAxis", + "yAxis", + "zAxis" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "face" + ] + }, + "id": { + "description": "The id of the face.", + "type": "string", + "format": "uuid" + }, + "artifactId": { + "description": "The artifact ID.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "value": { + "description": "The tag of the face.", + "type": "string" + }, + "xAxis": { + "description": "What should the face’s X axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "yAxis": { + "description": "What should the face’s Y axis be?", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "zAxis": { + "description": "The z-axis (normal).", + "allOf": [ + { + "$ref": "#/components/schemas/Point3d" + } + ] + }, + "solid": { + "description": "The solid the face is on.", + "allOf": [ + { + "$ref": "#/components/schemas/Solid" + } + ] + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + } + ] + }, + "ArtifactId": { + "type": "string", + "format": "uuid" + }, + "PlaneType": { + "description": "Type for a plane.", + "oneOf": [ + { + "type": "string", + "enum": [ + "XY", + "XZ", + "YZ" + ] + }, + { + "description": "A custom plane.", + "type": "string", + "enum": [ + "Custom" + ] + } + ] + }, + "Point3d": { + "type": "object", + "required": [ + "x", + "y", + "z" + ], + "properties": { + "x": { + "type": "number", + "format": "double" + }, + "y": { + "type": "number", + "format": "double" + }, + "z": { + "type": "number", + "format": "double" + } + } + }, + "UnitLen": { + "oneOf": [ + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Mm" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Cm" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "M" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Inches" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Feet" + ] + } + } + }, + { + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "Yards" + ] + } + } + } + ] + }, + "Metadata": { + "description": "Metadata.", + "type": "object", + "required": [ + "sourceRange" + ], + "properties": { + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + "Solid": { + "description": "An solid is a collection of extrude surfaces.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "height", + "id", + "sketch", + "units", + "value" + ], + "properties": { + "id": { + "description": "The id of the solid.", + "type": "string", + "format": "uuid" + }, + "artifactId": { + "description": "The artifact ID of the solid. Unlike `id`, this doesn't change.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "value": { + "description": "The extrude surfaces.", + "type": "array", + "items": { + "$ref": "#/components/schemas/ExtrudeSurface" + } + }, + "sketch": { + "description": "The sketch.", + "allOf": [ + { + "$ref": "#/components/schemas/Sketch" + } + ] + }, + "height": { + "description": "The height of the solid.", + "type": "number", + "format": "double" + }, + "startCapId": { + "description": "The id of the extrusion start cap", + "type": "string", + "format": "uuid", + "nullable": true + }, + "endCapId": { + "description": "The id of the extrusion end cap", + "type": "string", + "format": "uuid", + "nullable": true + }, + "edgeCuts": { + "description": "Chamfers or fillets on this solid.", + "type": "array", + "items": { + "$ref": "#/components/schemas/EdgeCut" + } + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "description": "Metadata.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + "ExtrudeSurface": { + "description": "An extrude surface.", + "oneOf": [ + { + "description": "An extrude plane.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "extrudePlane" + ] + }, + "faceId": { + "description": "The face id for the extrude plane.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + { + "description": "An extruded arc.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "extrudeArc" + ] + }, + "faceId": { + "description": "The face id for the extrude plane.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + { + "description": "Geometry metadata.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "chamfer" + ] + }, + "faceId": { + "description": "The id for the chamfer surface.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + }, + { + "description": "Geometry metadata.", + "type": "object", + "required": [ + "faceId", + "id", + "sourceRange", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "fillet" + ] + }, + "faceId": { + "description": "The id for the fillet surface.", + "type": "string", + "format": "uuid" + }, + "tag": { + "description": "The tag.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "id": { + "description": "The id of the geometry.", + "type": "string", + "format": "uuid" + }, + "sourceRange": { + "description": "The source range.", + "allOf": [ + { + "$ref": "#/components/schemas/SourceRange" + } + ] + } + } + } + ] + }, + "Sketch": { + "description": "A sketch is a collection of paths.", + "type": "object", + "required": [ + "__meta", + "artifactId", + "id", + "on", + "originalId", + "paths", + "start", + "units" + ], + "properties": { + "id": { + "description": "The id of the sketch (this will change when the engine's reference to it changes).", + "type": "string", + "format": "uuid" + }, + "paths": { + "description": "The paths in the sketch.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Path" + } + }, + "on": { + "description": "What the sketch is on (can be a plane or a face).", + "allOf": [ + { + "$ref": "#/components/schemas/SketchSurface" + } + ] + }, + "start": { + "description": "The starting path.", + "allOf": [ + { + "$ref": "#/components/schemas/BasePath" + } + ] + }, + "tags": { + "description": "Tag identifiers that have been declared in this sketch.", + "type": "object", + "additionalProperties": { + "$ref": "#/components/schemas/TagIdentifier" + } + }, + "artifactId": { + "description": "The original id of the sketch. This stays the same even if the sketch is is sketched on face etc.", + "allOf": [ + { + "$ref": "#/components/schemas/ArtifactId" + } + ] + }, + "originalId": { + "type": "string", + "format": "uuid" + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "__meta": { + "description": "Metadata.", + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to" + ], + "properties": { + "from": { + "description": "The from point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "to": { + "description": "The to point.", + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } + }, + "TagIdentifier": { + "type": "object", + "required": [ + "__meta", + "value" + ], + "properties": { + "value": { + "type": "string" + }, + "info": { + "allOf": [ + { + "$ref": "#/components/schemas/TagEngineInfo" + } + ], + "nullable": true + }, + "__meta": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Metadata" + } + } + } + }, + "TagEngineInfo": { + "description": "Engine information for a tag.", + "type": "object", + "required": [ + "id", + "sketch" + ], + "properties": { + "id": { + "description": "The id of the tagged object.", + "type": "string", + "format": "uuid" + }, + "sketch": { + "description": "The sketch the tag is on.", + "type": "string", + "format": "uuid" + }, + "path": { + "description": "The path the tag is on.", + "allOf": [ + { + "$ref": "#/components/schemas/Path" + } + ], + "nullable": true + }, + "surface": { + "description": "The surface information for the tag.", + "allOf": [ + { + "$ref": "#/components/schemas/ExtrudeSurface" + } + ], + "nullable": true + } + } + }, + "EdgeCut": { + "description": "A fillet or a chamfer.", + "oneOf": [ + { + "description": "A fillet.", + "type": "object", + "required": [ + "edgeId", + "id", + "radius", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "fillet" + ] + }, + "id": { + "description": "The id of the engine command that called this fillet.", + "type": "string", + "format": "uuid" + }, + "radius": { + "type": "number", + "format": "double" + }, + "edgeId": { + "description": "The engine id of the edge to fillet.", + "type": "string", + "format": "uuid" + }, + "tag": { + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + } + } + }, + { + "description": "A chamfer.", + "type": "object", + "required": [ + "edgeId", + "id", + "length", + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "chamfer" + ] + }, + "id": { + "description": "The id of the engine command that called this chamfer.", + "type": "string", + "format": "uuid" + }, + "length": { + "type": "number", + "format": "double" + }, + "edgeId": { + "description": "The engine id of the edge to chamfer.", + "type": "string", + "format": "uuid" + }, + "tag": { + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + } + } + } + ] + } + } + }, + "required": false, + "labelRequired": true } ], "returnValue": { @@ -146698,6 +153195,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -146746,6 +153244,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -148943,6 +155445,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -148991,6 +155494,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -150413,6 +156920,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -150461,6 +156969,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -151251,6 +157763,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -151299,6 +157812,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -152505,6 +159022,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -152553,6 +159071,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -154510,6 +161032,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -154558,6 +161081,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -157253,6 +163780,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -157301,6 +163829,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -157849,6 +164381,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -157897,6 +164430,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -159103,6 +165640,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -159151,6 +165689,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -159411,6 +165953,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -159459,6 +166002,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -160665,6 +167212,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -160713,6 +167261,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -160968,6 +167520,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -161016,6 +167569,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -162222,6 +168779,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -162270,6 +168828,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -164240,6 +170802,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -164288,6 +170851,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -166981,6 +173548,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -167029,6 +173597,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -169723,6 +176295,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -169771,6 +176344,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -171979,6 +178556,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -172027,6 +178605,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -174720,6 +181302,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -174768,6 +181351,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -176960,6 +183547,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -177008,6 +183596,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -179702,6 +186294,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -179750,6 +186343,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -181327,6 +187924,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -181375,6 +187973,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -182755,6 +189357,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -182803,6 +189406,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -183277,6 +189884,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -183325,6 +189933,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -193807,6 +200419,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -193855,6 +200468,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -194736,6 +201353,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -194784,6 +201402,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -196711,6 +203333,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -196759,6 +203382,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -198181,6 +204808,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -198229,6 +204857,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -199187,6 +205819,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -199235,6 +205868,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -200441,6 +207078,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -200489,6 +207127,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -200751,6 +207393,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -200799,6 +207442,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -202005,6 +208652,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -202053,6 +208701,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -202940,6 +209592,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -202988,6 +209641,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -204584,6 +211241,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -204632,6 +211290,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -206248,6 +212910,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -206296,6 +212959,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -207310,6 +213977,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -207358,6 +214026,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -208823,6 +215495,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -208871,6 +215544,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -208902,6 +215579,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -208950,6 +215628,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -210725,6 +217407,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -210773,6 +217456,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -212957,6 +219644,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -213005,6 +219693,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -214211,6 +220903,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -214259,6 +220952,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -215681,6 +222378,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -215729,6 +222427,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -215957,6 +222659,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -216005,6 +222708,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -217211,6 +223918,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -217259,6 +223967,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -217518,6 +224230,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -217566,6 +224279,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -218772,6 +225489,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -218820,6 +225538,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -220242,6 +226964,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -220290,6 +227013,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -220518,6 +227245,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -220566,6 +227294,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -221772,6 +228504,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -221820,6 +228553,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -222079,6 +228816,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -222127,6 +228865,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -223333,6 +230075,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -223381,6 +230124,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -224803,6 +231550,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -224851,6 +231599,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -225079,6 +231831,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -225127,6 +231880,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -226333,6 +233090,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -226381,6 +233139,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -226747,6 +233509,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -226795,6 +233558,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -228001,6 +234768,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -228049,6 +234817,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -229471,6 +236243,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -229519,6 +236292,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -229747,6 +236524,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -229795,6 +236573,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -231001,6 +237783,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -231049,6 +237832,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -231303,6 +238090,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -231351,6 +238139,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -232557,6 +239349,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -232605,6 +239398,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -234027,6 +240824,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -234075,6 +240873,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -234303,6 +241105,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -234351,6 +241154,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -235557,6 +242364,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -235605,6 +242413,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -235859,6 +242671,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -235907,6 +242720,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -237113,6 +243930,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -237161,6 +243979,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -238583,6 +245405,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -238631,6 +245454,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -238859,6 +245686,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -238907,6 +245735,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -240113,6 +246945,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -240161,6 +246994,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -240415,6 +247252,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -240463,6 +247301,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -241669,6 +248511,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -241717,6 +248560,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -243139,6 +249986,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -243187,6 +250035,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -243415,6 +250267,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -243463,6 +250316,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, @@ -244669,6 +251526,7 @@ "artifactId", "id", "on", + "originalId", "paths", "start", "units" @@ -244717,6 +251575,10 @@ } ] }, + "originalId": { + "type": "string", + "format": "uuid" + }, "units": { "$ref": "#/components/schemas/UnitLen" }, diff --git a/docs/kcl/types/CircularPattern2dData.md b/docs/kcl/types/CircularPattern2dData.md index cfa0702b5..7a91c6173 100644 --- a/docs/kcl/types/CircularPattern2dData.md +++ b/docs/kcl/types/CircularPattern2dData.md @@ -20,5 +20,6 @@ Data for a circular pattern on a 2D sketch. | `center` |`[number, number]`| The center about which to make the pattern. This is a 2D vector. | No | | `arcDegrees` |`number`| The arc angle (in degrees) to place the repetitions. Must be greater than 0. | No | | `rotateDuplicates` |`boolean`| Whether or not to rotate the duplicates as they are copied. | No | +| `useOriginal` |`boolean`| If the target being patterned is itself a pattern, then, should you use the original solid, or the pattern? | No | diff --git a/docs/kcl/types/CircularPattern3dData.md b/docs/kcl/types/CircularPattern3dData.md index b4bbd7d52..251467309 100644 --- a/docs/kcl/types/CircularPattern3dData.md +++ b/docs/kcl/types/CircularPattern3dData.md @@ -21,5 +21,6 @@ Data for a circular pattern on a 3D model. | `center` |`[number, number, number]`| The center about which to make the pattern. This is a 3D vector. | No | | `arcDegrees` |`number`| The arc angle (in degrees) to place the repetitions. Must be greater than 0. | No | | `rotateDuplicates` |`boolean`| Whether or not to rotate the duplicates as they are copied. | No | +| `useOriginal` |`boolean`| If the target being patterned is itself a pattern, then, should you use the original solid, or the pattern? | No | diff --git a/docs/kcl/types/Sketch.md b/docs/kcl/types/Sketch.md index a299cfbd0..00d18082a 100644 --- a/docs/kcl/types/Sketch.md +++ b/docs/kcl/types/Sketch.md @@ -22,6 +22,7 @@ A sketch is a collection of paths. | `start` |[`BasePath`](/docs/kcl/types/BasePath)| The starting path. | No | | `tags` |`object`| Tag identifiers that have been declared in this sketch. | No | | `artifactId` |[`ArtifactId`](/docs/kcl/types/ArtifactId)| The original id of the sketch. This stays the same even if the sketch is is sketched on face etc. | No | +| `originalId` |`string`| | No | | `units` |[`UnitLen`](/docs/kcl/types/UnitLen)| A sketch is a collection of paths. | No | | `__meta` |`[` [`Metadata`](/docs/kcl/types/Metadata) `]`| Metadata. | No | diff --git a/docs/kcl/types/SketchSet.md b/docs/kcl/types/SketchSet.md index 2597d81c3..9cf3827ed 100644 --- a/docs/kcl/types/SketchSet.md +++ b/docs/kcl/types/SketchSet.md @@ -31,6 +31,7 @@ A sketch is a collection of paths. | `start` |[`BasePath`](/docs/kcl/types/BasePath)| The starting path. | No | | `tags` |`object`| Tag identifiers that have been declared in this sketch. | No | | `artifactId` |[`ArtifactId`](/docs/kcl/types/ArtifactId)| The original id of the sketch. This stays the same even if the sketch is is sketched on face etc. | No | +| `originalId` |`string`| | No | | `units` |[`UnitLen`](/docs/kcl/types/UnitLen)| A sketch or a group of sketches. | No | | `__meta` |`[` [`Metadata`](/docs/kcl/types/Metadata) `]`| Metadata. | No | diff --git a/e2e/playwright/snapshot-tests.spec.ts-snapshots/code-color-goober-code-color-goober-1-Google-Chrome-linux.png b/e2e/playwright/snapshot-tests.spec.ts-snapshots/code-color-goober-code-color-goober-1-Google-Chrome-linux.png index 9a3aa2342..46d197e28 100644 Binary files a/e2e/playwright/snapshot-tests.spec.ts-snapshots/code-color-goober-code-color-goober-1-Google-Chrome-linux.png and b/e2e/playwright/snapshot-tests.spec.ts-snapshots/code-color-goober-code-color-goober-1-Google-Chrome-linux.png differ diff --git a/src/lang/artifact.test.ts b/src/lang/artifact.test.ts index f17c2a81b..711492051 100644 --- a/src/lang/artifact.test.ts +++ b/src/lang/artifact.test.ts @@ -55,6 +55,7 @@ const mySketch001 = startSketchOn('XY') ], id: expect.any(String), artifactId: expect.any(String), + originalId: expect.any(String), units: { type: 'Mm', }, @@ -98,6 +99,7 @@ const mySketch001 = startSketchOn('XY') ], sketch: { id: expect.any(String), + originalId: expect.any(String), artifactId: expect.any(String), units: { type: 'Mm', @@ -203,6 +205,7 @@ const sk2 = startSketchOn('XY') ], sketch: { id: expect.any(String), + originalId: expect.any(String), artifactId: expect.any(String), __meta: expect.any(Array), on: expect.any(Object), @@ -308,6 +311,7 @@ const sk2 = startSketchOn('XY') ], sketch: { id: expect.any(String), + originalId: expect.any(String), artifactId: expect.any(String), units: { type: 'Mm', diff --git a/src/lang/executor.test.ts b/src/lang/executor.test.ts index 2ee8bbead..c44c6ae58 100644 --- a/src/lang/executor.test.ts +++ b/src/lang/executor.test.ts @@ -221,6 +221,7 @@ const newVar = myVar + 1` }, ], id: expect.any(String), + originalId: expect.any(String), artifactId: expect.any(String), units: { type: 'Mm', diff --git a/src/wasm-lib/kcl/src/execution/geometry.rs b/src/wasm-lib/kcl/src/execution/geometry.rs index 63b693c03..3d34b21c6 100644 --- a/src/wasm-lib/kcl/src/execution/geometry.rs +++ b/src/wasm-lib/kcl/src/execution/geometry.rs @@ -32,6 +32,16 @@ impl Geometry { Geometry::Solid(e) => e.id, } } + + /// If this geometry is the result of a pattern, then return the ID of + /// the original sketch which was patterned. + /// Equivalent to the `id()` method if this isn't a pattern. + pub fn original_id(&self) -> uuid::Uuid { + match self { + Geometry::Sketch(s) => s.original_id, + Geometry::Solid(e) => e.sketch.original_id, + } + } } /// A set of geometry. @@ -419,6 +429,8 @@ pub struct Sketch { /// The original id of the sketch. This stays the same even if the sketch is /// is sketched on face etc. pub artifact_id: ArtifactId, + #[ts(skip)] + pub original_id: uuid::Uuid, pub units: UnitLen, /// Metadata. #[serde(rename = "__meta")] diff --git a/src/wasm-lib/kcl/src/std/args.rs b/src/wasm-lib/kcl/src/std/args.rs index 3873f667e..7042ac154 100644 --- a/src/wasm-lib/kcl/src/std/args.rs +++ b/src/wasm-lib/kcl/src/std/args.rs @@ -356,7 +356,7 @@ impl Args { Ok(numbers) } - pub(crate) fn get_pattern_transform_args(&self) -> Result<(u32, FnAsArg<'_>, SolidSet), KclError> { + pub(crate) fn get_pattern_transform_args(&self) -> Result<(u32, FnAsArg<'_>, SolidSet, Option), KclError> { FromArgs::from_args(self, 0) } @@ -764,6 +764,10 @@ macro_rules! let_field_of { ($obj:ident, $field:ident?) => { let $field = $obj.get(stringify!($field)).and_then(FromKclValue::from_kcl_val); }; + // Optional field but with a different string used as the key + ($obj:ident, $field:ident? $key:literal) => { + let $field = $obj.get($key).and_then(FromKclValue::from_kcl_val); + }; // Mandatory field, but with a different string used as the key. ($obj:ident, $field:ident $key:literal) => { let $field = $obj.get($key).and_then(FromKclValue::from_kcl_val)?; @@ -947,12 +951,14 @@ impl<'a> FromKclValue<'a> for super::patterns::CircularPattern3dData { let_field_of!(obj, rotate_duplicates "rotateDuplicates"); let_field_of!(obj, axis); let_field_of!(obj, center); + let_field_of!(obj, use_original? "useOriginal"); Some(Self { instances, axis, center, arc_degrees, rotate_duplicates, + use_original, }) } } @@ -964,11 +970,13 @@ impl<'a> FromKclValue<'a> for super::patterns::CircularPattern2dData { let_field_of!(obj, arc_degrees "arcDegrees"); let_field_of!(obj, rotate_duplicates "rotateDuplicates"); let_field_of!(obj, center); + let_field_of!(obj, use_original? "useOriginal"); Some(Self { instances, center, arc_degrees, rotate_duplicates, + use_original, }) } } diff --git a/src/wasm-lib/kcl/src/std/patterns.rs b/src/wasm-lib/kcl/src/std/patterns.rs index f3313f808..8e3d9ffaa 100644 --- a/src/wasm-lib/kcl/src/std/patterns.rs +++ b/src/wasm-lib/kcl/src/std/patterns.rs @@ -63,7 +63,7 @@ pub struct LinearPattern3dData { /// Repeat some 3D solid, changing each repetition slightly. pub async fn pattern_transform(exec_state: &mut ExecState, args: Args) -> Result { - let (num_repetitions, transform, extr) = args.get_pattern_transform_args()?; + let (num_repetitions, transform, extr, use_original) = args.get_pattern_transform_args()?; let solids = inner_pattern_transform( num_repetitions, @@ -75,6 +75,7 @@ pub async fn pattern_transform(exec_state: &mut ExecState, args: Args) -> Result memory: *transform.memory, }, extr, + use_original, exec_state, &args, ) @@ -84,7 +85,7 @@ pub async fn pattern_transform(exec_state: &mut ExecState, args: Args) -> Result /// Repeat some 2D sketch, changing each repetition slightly. pub async fn pattern_transform_2d(exec_state: &mut ExecState, args: Args) -> Result { - let (num_repetitions, transform, sketch): (u32, super::FnAsArg<'_>, SketchSet) = + let (num_repetitions, transform, sketch, use_original): (u32, super::FnAsArg<'_>, SketchSet, Option) = super::args::FromArgs::from_args(&args, 0)?; let sketches = inner_pattern_transform_2d( @@ -97,6 +98,7 @@ pub async fn pattern_transform_2d(exec_state: &mut ExecState, args: Args) -> Res memory: *transform.memory, }, sketch, + use_original, exec_state, &args, ) @@ -295,6 +297,7 @@ async fn inner_pattern_transform<'a>( total_instances: u32, transform_function: FunctionParam<'a>, solid_set: SolidSet, + use_original: Option, exec_state: &mut ExecState, args: &'a Args, ) -> Result>, KclError> { @@ -310,7 +313,7 @@ async fn inner_pattern_transform<'a>( let t = make_transform::>(i, &transform_function, args.source_range, exec_state).await?; transform.push(t); } - execute_pattern_transform(transform, solid_set, exec_state, args).await + execute_pattern_transform(transform, solid_set, use_original.unwrap_or_default(), exec_state, args).await } /// Just like patternTransform, but works on 2D sketches not 3D solids. @@ -332,6 +335,7 @@ async fn inner_pattern_transform_2d<'a>( total_instances: u32, transform_function: FunctionParam<'a>, solid_set: SketchSet, + use_original: Option, exec_state: &mut ExecState, args: &'a Args, ) -> Result>, KclError> { @@ -347,12 +351,13 @@ async fn inner_pattern_transform_2d<'a>( let t = make_transform::>(i, &transform_function, args.source_range, exec_state).await?; transform.push(t); } - execute_pattern_transform(transform, solid_set, exec_state, args).await + execute_pattern_transform(transform, solid_set, use_original.unwrap_or_default(), exec_state, args).await } async fn execute_pattern_transform( transforms: Vec>, geo_set: T::Set, + use_original: bool, exec_state: &mut ExecState, args: &Args, ) -> Result, KclError> { @@ -368,7 +373,7 @@ async fn execute_pattern_transform( let mut output = Vec::new(); for geo in starting { - let new = send_pattern_transform(transforms.clone(), &geo, exec_state, args).await?; + let new = send_pattern_transform(transforms.clone(), &geo, use_original, exec_state, args).await?; output.extend(new) } Ok(output) @@ -379,6 +384,7 @@ async fn send_pattern_transform( // https://github.com/KittyCAD/modeling-app/issues/2821 transforms: Vec>, solid: &T, + use_original: bool, exec_state: &mut ExecState, args: &Args, ) -> Result, KclError> { @@ -388,7 +394,7 @@ async fn send_pattern_transform( .send_modeling_cmd( id, ModelingCmd::from(mcmd::EntityLinearPatternTransform { - entity_id: solid.id(), + entity_id: if use_original { solid.original_id() } else { solid.id() }, transform: Default::default(), transforms, }), @@ -602,6 +608,7 @@ fn array_to_point2d(val: &KclValue, source_ranges: Vec) -> Result

> + Clone; fn id(&self) -> Uuid; + fn original_id(&self) -> Uuid; fn set_id(&mut self, id: Uuid); fn array_to_point3d(val: &KclValue, source_ranges: Vec) -> Result; async fn flush_batch(args: &Args, exec_state: &mut ExecState, set: Self::Set) -> Result<(), KclError>; @@ -615,6 +622,9 @@ impl GeometryTrait for Box { fn id(&self) -> Uuid { self.id } + fn original_id(&self) -> Uuid { + self.original_id + } fn array_to_point3d(val: &KclValue, source_ranges: Vec) -> Result { let Point2d { x, y } = array_to_point2d(val, source_ranges)?; Ok(Point3d { x, y, z: 0.0 }) @@ -634,6 +644,11 @@ impl GeometryTrait for Box { fn id(&self) -> Uuid { self.id } + + fn original_id(&self) -> Uuid { + self.sketch.original_id + } + fn array_to_point3d(val: &KclValue, source_ranges: Vec) -> Result { array_to_point3d(val, source_ranges) } @@ -674,7 +689,8 @@ mod tests { /// A linear pattern on a 2D sketch. pub async fn pattern_linear_2d(exec_state: &mut ExecState, args: Args) -> Result { - let (data, sketch_set): (LinearPattern2dData, SketchSet) = args.get_data_and_sketch_set()?; + let (data, sketch_set, use_original): (LinearPattern2dData, SketchSet, Option) = + super::args::FromArgs::from_args(&args, 0)?; if data.axis == [0.0, 0.0] { return Err(KclError::Semantic(KclErrorDetails { @@ -685,7 +701,7 @@ pub async fn pattern_linear_2d(exec_state: &mut ExecState, args: Args) -> Result })); } - let sketches = inner_pattern_linear_2d(data, sketch_set, exec_state, args).await?; + let sketches = inner_pattern_linear_2d(data, sketch_set, use_original, exec_state, args).await?; Ok(sketches.into()) } @@ -709,6 +725,7 @@ pub async fn pattern_linear_2d(exec_state: &mut ExecState, args: Args) -> Result async fn inner_pattern_linear_2d( data: LinearPattern2dData, sketch_set: SketchSet, + use_original: Option, exec_state: &mut ExecState, args: Args, ) -> Result>, KclError> { @@ -726,12 +743,20 @@ async fn inner_pattern_linear_2d( }] }) .collect(); - execute_pattern_transform(transforms, sketch_set, exec_state, &args).await + execute_pattern_transform( + transforms, + sketch_set, + use_original.unwrap_or_default(), + exec_state, + &args, + ) + .await } /// A linear pattern on a 3D model. pub async fn pattern_linear_3d(exec_state: &mut ExecState, args: Args) -> Result { - let (data, solid_set): (LinearPattern3dData, SolidSet) = args.get_data_and_solid_set()?; + let (data, solid_set, use_original): (LinearPattern3dData, SolidSet, Option) = + super::args::FromArgs::from_args(&args, 0)?; if data.axis == [0.0, 0.0, 0.0] { return Err(KclError::Semantic(KclErrorDetails { @@ -742,7 +767,7 @@ pub async fn pattern_linear_3d(exec_state: &mut ExecState, args: Args) -> Result })); } - let solids = inner_pattern_linear_3d(data, solid_set, exec_state, args).await?; + let solids = inner_pattern_linear_3d(data, solid_set, use_original, exec_state, args).await?; Ok(solids.into()) } @@ -771,6 +796,7 @@ pub async fn pattern_linear_3d(exec_state: &mut ExecState, args: Args) -> Result async fn inner_pattern_linear_3d( data: LinearPattern3dData, solid_set: SolidSet, + use_original: Option, exec_state: &mut ExecState, args: Args, ) -> Result>, KclError> { @@ -788,7 +814,14 @@ async fn inner_pattern_linear_3d( }] }) .collect(); - execute_pattern_transform(transforms, solid_set, exec_state, &args).await + execute_pattern_transform( + transforms, + solid_set, + use_original.unwrap_or_default(), + exec_state, + &args, + ) + .await } /// Data for a circular pattern on a 2D sketch. @@ -807,6 +840,10 @@ pub struct CircularPattern2dData { pub arc_degrees: f64, /// Whether or not to rotate the duplicates as they are copied. pub rotate_duplicates: bool, + /// If the target being patterned is itself a pattern, then, should you use the original solid, + /// or the pattern? + #[serde(default)] + pub use_original: Option, } /// Data for a circular pattern on a 3D model. @@ -827,6 +864,10 @@ pub struct CircularPattern3dData { pub arc_degrees: f64, /// Whether or not to rotate the duplicates as they are copied. pub rotate_duplicates: bool, + /// If the target being patterned is itself a pattern, then, should you use the original solid, + /// or the pattern? + #[serde(default)] + pub use_original: Option, } pub enum CircularPattern { @@ -889,6 +930,13 @@ impl CircularPattern { CircularPattern::ThreeD(lp) => lp.rotate_duplicates, } } + + pub fn use_original(&self) -> bool { + match self { + CircularPattern::TwoD(lp) => lp.use_original.unwrap_or_default(), + CircularPattern::ThreeD(lp) => lp.use_original.unwrap_or_default(), + } + } } /// A circular pattern on a 2D sketch. @@ -1055,7 +1103,11 @@ async fn pattern_circular( id, ModelingCmd::from(mcmd::EntityCircularPattern { axis: kcmc::shared::Point3d::from(data.axis()), - entity_id: geometry.id(), + entity_id: if data.use_original() { + geometry.original_id() + } else { + geometry.id() + }, center: kcmc::shared::Point3d { x: LengthUnit(center[0]), y: LengthUnit(center[1]), diff --git a/src/wasm-lib/kcl/src/std/sketch.rs b/src/wasm-lib/kcl/src/std/sketch.rs index 87368d281..da9ff1530 100644 --- a/src/wasm-lib/kcl/src/std/sketch.rs +++ b/src/wasm-lib/kcl/src/std/sketch.rs @@ -1360,6 +1360,7 @@ pub(crate) async fn inner_start_profile_at( let sketch = Sketch { id: path_id, + original_id: path_id, artifact_id: path_id.into(), on: sketch_surface.clone(), paths: vec![], diff --git a/src/wasm-lib/kcl/tests/angled_line/program_memory.snap b/src/wasm-lib/kcl/tests/angled_line/program_memory.snap index a9c24da66..dd87ad766 100644 --- a/src/wasm-lib/kcl/tests/angled_line/program_memory.snap +++ b/src/wasm-lib/kcl/tests/angled_line/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing angled_line.kcl +snapshot_kind: text --- { "environments": [ @@ -346,6 +347,7 @@ description: Program memory after executing angled_line.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap index 08a99d2ff..6866cdf70 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap @@ -374,6 +374,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -904,6 +905,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -975,6 +977,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1412,6 +1415,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1878,6 +1882,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1949,6 +1954,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap index c8eeb0260..42c8b8ab8 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap @@ -468,6 +468,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -609,6 +610,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap index 3dc19d8e8..829cee710 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap @@ -200,6 +200,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap index 6b3616b86..2ab737480 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap @@ -274,6 +274,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -695,6 +696,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -757,6 +759,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1332,6 +1335,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1394,6 +1398,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1517,6 +1522,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2236,6 +2242,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2298,6 +2305,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2421,6 +2429,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2483,6 +2492,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2836,6 +2846,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3202,6 +3213,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3264,6 +3276,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3779,6 +3792,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3841,6 +3855,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3964,6 +3979,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4628,6 +4644,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4690,6 +4707,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4813,6 +4831,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4875,6 +4894,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap index d58a5870d..c2e28eab5 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing basic_fillet_cube_close_opposite.kcl +snapshot_kind: text --- { "environments": [ @@ -422,6 +423,7 @@ description: Program memory after executing basic_fillet_cube_close_opposite.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap index acb9cdb97..b649ea4cc 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing basic_fillet_cube_end.kcl +snapshot_kind: text --- { "environments": [ @@ -353,6 +354,7 @@ description: Program memory after executing basic_fillet_cube_end.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap index f68be7a59..91f43884f 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing basic_fillet_cube_next_adjacent.kcl +snapshot_kind: text --- { "environments": [ @@ -491,6 +492,7 @@ description: Program memory after executing basic_fillet_cube_next_adjacent.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap index b9980aeaf..9565f7bb4 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing basic_fillet_cube_previous_adjacent.kcl +snapshot_kind: text --- { "environments": [ @@ -491,6 +492,7 @@ description: Program memory after executing basic_fillet_cube_previous_adjacent. } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap index 55ca2a482..916aa6379 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing basic_fillet_cube_start.kcl +snapshot_kind: text --- { "environments": [ @@ -353,6 +354,7 @@ description: Program memory after executing basic_fillet_cube_start.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap index 6a96f6c03..51b18a113 100644 --- a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing big_number_angle_to_match_length_x.kcl +snapshot_kind: text --- { "environments": [ @@ -253,6 +254,7 @@ description: Program memory after executing big_number_angle_to_match_length_x.k } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap index 48bf293b1..dfac9c2eb 100644 --- a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing big_number_angle_to_match_length_y.kcl +snapshot_kind: text --- { "environments": [ @@ -253,6 +254,7 @@ description: Program memory after executing big_number_angle_to_match_length_y.k } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap b/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap index a604a2458..ea9139d14 100644 --- a/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap +++ b/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing circle_three_point.kcl +snapshot_kind: text --- { "environments": [ @@ -126,6 +127,7 @@ description: Program memory after executing circle_three_point.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap index f02ee6dde..38e85449b 100644 --- a/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap +++ b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing circular_pattern3d_a_pattern.kcl +snapshot_kind: text --- { "environments": [ @@ -213,6 +214,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -431,6 +433,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -645,6 +648,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -859,6 +863,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1073,6 +1078,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1287,6 +1293,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1501,6 +1508,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1715,6 +1723,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1934,6 +1943,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2148,6 +2158,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2362,6 +2373,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2576,6 +2588,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2790,6 +2803,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3004,6 +3018,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3218,6 +3233,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3432,6 +3448,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3646,6 +3663,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3860,6 +3878,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4074,6 +4093,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4288,6 +4308,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4502,6 +4523,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4716,6 +4738,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4930,6 +4953,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5144,6 +5168,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5358,6 +5383,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5572,6 +5598,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5786,6 +5813,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6000,6 +6028,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6214,6 +6243,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6428,6 +6458,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6642,6 +6673,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6856,6 +6888,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7070,6 +7103,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7284,6 +7318,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7498,6 +7533,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7712,6 +7748,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7926,6 +7963,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8140,6 +8178,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8354,6 +8393,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8568,6 +8608,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8782,6 +8823,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8996,6 +9038,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9210,6 +9253,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9424,6 +9468,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9638,6 +9683,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9852,6 +9898,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10066,6 +10113,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10280,6 +10328,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10494,6 +10543,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10708,6 +10758,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10922,6 +10973,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11136,6 +11188,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11350,6 +11403,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11564,6 +11618,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11778,6 +11833,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11992,6 +12048,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -12206,6 +12263,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -12420,6 +12478,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -12634,6 +12693,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -12848,6 +12908,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -13062,6 +13123,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -13276,6 +13338,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -13490,6 +13553,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -13704,6 +13768,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -13918,6 +13983,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -14132,6 +14198,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -14346,6 +14413,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -14560,6 +14628,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -14774,6 +14843,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -14988,6 +15058,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -15202,6 +15273,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -15416,6 +15488,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -15630,6 +15703,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -15844,6 +15918,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -16058,6 +16133,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -16272,6 +16348,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -16486,6 +16563,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -16700,6 +16778,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -16914,6 +16993,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -17128,6 +17208,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -17342,6 +17423,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -17556,6 +17638,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -17770,6 +17853,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -17984,6 +18068,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -18198,6 +18283,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -18412,6 +18498,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -18626,6 +18713,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -18840,6 +18928,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -19054,6 +19143,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -19268,6 +19358,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -19482,6 +19573,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -19696,6 +19788,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -19910,6 +20003,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -20124,6 +20218,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -20338,6 +20433,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -20552,6 +20648,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -20766,6 +20863,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -20980,6 +21078,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -21194,6 +21293,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -21408,6 +21508,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -21622,6 +21723,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -21836,6 +21938,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -22050,6 +22153,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -22264,6 +22368,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -22478,6 +22583,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -22692,6 +22798,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -22906,6 +23013,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -23120,6 +23228,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -23334,6 +23443,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -23548,6 +23658,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -23762,6 +23873,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -23976,6 +24088,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -24190,6 +24303,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -24404,6 +24518,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -24618,6 +24733,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -24832,6 +24948,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -25046,6 +25163,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -25260,6 +25378,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -25474,6 +25593,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -25688,6 +25808,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -25902,6 +26023,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -26116,6 +26238,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -26330,6 +26453,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -26544,6 +26668,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -26758,6 +26883,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -26972,6 +27098,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -27186,6 +27313,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -27400,6 +27528,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -27614,6 +27743,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -27828,6 +27958,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -28042,6 +28173,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -28256,6 +28388,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -28470,6 +28603,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -28684,6 +28818,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -28898,6 +29033,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -29112,6 +29248,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -29326,6 +29463,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -29540,6 +29678,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -29754,6 +29893,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -29968,6 +30108,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -30182,6 +30323,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -30396,6 +30538,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -30610,6 +30753,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -30824,6 +30968,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -31038,6 +31183,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -31252,6 +31398,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -31466,6 +31613,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -31680,6 +31828,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -31894,6 +32043,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -32108,6 +32258,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -32322,6 +32473,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -32536,6 +32688,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -32750,6 +32903,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -32964,6 +33118,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -33178,6 +33333,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -33392,6 +33548,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -33606,6 +33763,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -33820,6 +33978,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -34034,6 +34193,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -34248,6 +34408,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -34462,6 +34623,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -34676,6 +34838,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -34890,6 +35053,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -35104,6 +35268,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -35318,6 +35483,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -35532,6 +35698,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -35746,6 +35913,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -35960,6 +36128,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -36174,6 +36343,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -36388,6 +36558,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -36602,6 +36773,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -36816,6 +36988,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -37030,6 +37203,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -37244,6 +37418,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -37458,6 +37633,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -37672,6 +37848,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -37886,6 +38063,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -38100,6 +38278,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -38314,6 +38493,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -38528,6 +38708,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -38742,6 +38923,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -38956,6 +39138,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -39170,6 +39353,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -39384,6 +39568,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -39598,6 +39783,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -39812,6 +39998,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -40026,6 +40213,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -40240,6 +40428,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -40454,6 +40643,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -40668,6 +40858,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -40882,6 +41073,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -41096,6 +41288,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -41310,6 +41503,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -41524,6 +41718,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -41738,6 +41933,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -41952,6 +42148,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -42166,6 +42363,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -42380,6 +42578,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -42594,6 +42793,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -42808,6 +43008,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -43022,6 +43223,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -43236,6 +43438,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -43450,6 +43653,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -43664,6 +43868,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -43878,6 +44083,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -44092,6 +44298,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -44306,6 +44513,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -44520,6 +44728,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -44734,6 +44943,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -44948,6 +45158,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -45162,6 +45373,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -45376,6 +45588,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -45590,6 +45803,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -45804,6 +46018,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -46018,6 +46233,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -46232,6 +46448,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -46446,6 +46663,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -46660,6 +46878,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -46874,6 +47093,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -47088,6 +47308,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -47302,6 +47523,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -47516,6 +47738,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -47730,6 +47953,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -47944,6 +48168,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -48158,6 +48383,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -48372,6 +48598,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -48586,6 +48813,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -48800,6 +49028,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -49014,6 +49243,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -49228,6 +49458,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -49442,6 +49673,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -49656,6 +49888,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -49870,6 +50103,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -50084,6 +50318,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -50298,6 +50533,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -50512,6 +50748,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -50726,6 +50963,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -50940,6 +51178,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -51154,6 +51393,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -51368,6 +51608,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -51582,6 +51823,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -51796,6 +52038,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -52010,6 +52253,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -52224,6 +52468,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -52438,6 +52683,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -52652,6 +52898,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -52866,6 +53113,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -53080,6 +53328,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -53294,6 +53543,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -53508,6 +53758,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -53722,6 +53973,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -53936,6 +54188,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -54150,6 +54403,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -54364,6 +54618,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -54578,6 +54833,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -54792,6 +55048,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -55006,6 +55263,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -55220,6 +55478,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -55434,6 +55693,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -55648,6 +55908,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -55862,6 +56123,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -56076,6 +56338,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -56290,6 +56553,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -56504,6 +56768,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -56718,6 +56983,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -56932,6 +57198,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -57146,6 +57413,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -57360,6 +57628,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -57574,6 +57843,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -57788,6 +58058,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -58002,6 +58273,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -58216,6 +58488,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -58430,6 +58703,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -58644,6 +58918,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -58858,6 +59133,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -59072,6 +59348,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -59286,6 +59563,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -59500,6 +59778,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -59714,6 +59993,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -59928,6 +60208,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -60142,6 +60423,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -60356,6 +60638,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -60570,6 +60853,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -60784,6 +61068,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -60998,6 +61283,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -61212,6 +61498,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -61426,6 +61713,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -61640,6 +61928,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -61854,6 +62143,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -62068,6 +62358,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -62282,6 +62573,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -62496,6 +62788,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -62710,6 +63003,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -62924,6 +63218,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -63138,6 +63433,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/cube/program_memory.snap b/src/wasm-lib/kcl/tests/cube/program_memory.snap index 51ba27aa2..dbd4efa6e 100644 --- a/src/wasm-lib/kcl/tests/cube/program_memory.snap +++ b/src/wasm-lib/kcl/tests/cube/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing cube.kcl +snapshot_kind: text --- { "environments": [ @@ -944,6 +945,7 @@ description: Program memory after executing cube.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap b/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap index 144481480..c84f47843 100644 --- a/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap +++ b/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing fillet-and-shell.kcl +snapshot_kind: text --- { "environments": [ @@ -504,6 +505,7 @@ description: Program memory after executing fillet-and-shell.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1787,6 +1789,7 @@ description: Program memory after executing fillet-and-shell.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2389,6 +2392,7 @@ description: Program memory after executing fillet-and-shell.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2674,6 +2678,7 @@ description: Program memory after executing fillet-and-shell.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap b/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap index a529a23a2..f034544e1 100644 --- a/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap +++ b/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing function_sketch.kcl +snapshot_kind: text --- { "environments": [ @@ -622,6 +623,7 @@ description: Program memory after executing function_sketch.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap b/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap index d039d541c..c178837fd 100644 --- a/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap +++ b/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing function_sketch_with_position.kcl +snapshot_kind: text --- { "environments": [ @@ -608,6 +609,7 @@ description: Program memory after executing function_sketch_with_position.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap b/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap index 8a207eb9a..f4145dca7 100644 --- a/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap +++ b/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing helix_ccw.kcl +snapshot_kind: text --- { "environments": [ @@ -126,6 +127,7 @@ description: Program memory after executing helix_ccw.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/i_shape/program_memory.snap b/src/wasm-lib/kcl/tests/i_shape/program_memory.snap index 4bf54b88c..d0c41e3a1 100644 --- a/src/wasm-lib/kcl/tests/i_shape/program_memory.snap +++ b/src/wasm-lib/kcl/tests/i_shape/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing i_shape.kcl +snapshot_kind: text --- { "environments": [ @@ -643,6 +644,7 @@ description: Program memory after executing i_shape.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1623,6 +1625,7 @@ description: Program memory after executing i_shape.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1923,6 +1926,7 @@ description: Program memory after executing i_shape.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/import_function_not_sketch/program_memory.snap b/src/wasm-lib/kcl/tests/import_function_not_sketch/program_memory.snap index 9a99380ce..4537d1c57 100644 --- a/src/wasm-lib/kcl/tests/import_function_not_sketch/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_function_not_sketch/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing import_function_not_sketch.kcl +snapshot_kind: text --- { "environments": [ @@ -471,6 +472,7 @@ description: Program memory after executing import_function_not_sketch.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -905,6 +907,7 @@ description: Program memory after executing import_function_not_sketch.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/import_whole/program_memory.snap b/src/wasm-lib/kcl/tests/import_whole/program_memory.snap index bd86bd7ab..5b2facea9 100644 --- a/src/wasm-lib/kcl/tests/import_whole/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_whole/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing import_whole.kcl +snapshot_kind: text --- { "environments": [ @@ -126,6 +127,7 @@ description: Program memory after executing import_whole.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Inches" }, diff --git a/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap b/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap index 41fa7b872..601d299d2 100644 --- a/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap +++ b/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing kittycad_svg.kcl +snapshot_kind: text --- { "environments": [ @@ -8820,6 +8821,7 @@ description: Program memory after executing kittycad_svg.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap index c109d5d69..4b4548604 100644 --- a/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap +++ b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing linear_pattern3d_a_pattern.kcl +snapshot_kind: text --- { "environments": [ @@ -213,6 +214,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -431,6 +433,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -645,6 +648,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -859,6 +863,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1073,6 +1078,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1287,6 +1293,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1501,6 +1508,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1715,6 +1723,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1934,6 +1943,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2148,6 +2158,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2362,6 +2373,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2576,6 +2588,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2790,6 +2803,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3004,6 +3018,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3218,6 +3233,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3432,6 +3448,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3646,6 +3663,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3860,6 +3878,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4074,6 +4093,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4288,6 +4308,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4502,6 +4523,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4716,6 +4738,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4930,6 +4953,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5144,6 +5168,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5358,6 +5383,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5572,6 +5598,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5786,6 +5813,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6000,6 +6028,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6214,6 +6243,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6428,6 +6458,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6642,6 +6673,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6856,6 +6888,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7070,6 +7103,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7284,6 +7318,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7498,6 +7533,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7712,6 +7748,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7926,6 +7963,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8140,6 +8178,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8354,6 +8393,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8568,6 +8608,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8782,6 +8823,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8996,6 +9038,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9210,6 +9253,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9424,6 +9468,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9638,6 +9683,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9852,6 +9898,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10066,6 +10113,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10280,6 +10328,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10494,6 +10543,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10708,6 +10758,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10922,6 +10973,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11136,6 +11188,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11350,6 +11403,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11564,6 +11618,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11778,6 +11833,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11992,6 +12048,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -12206,6 +12263,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap b/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap index f45635096..523a1806a 100644 --- a/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap +++ b/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing mike_stress_test.kcl +snapshot_kind: text --- { "environments": [ @@ -31120,6 +31121,7 @@ description: Program memory after executing mike_stress_test.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap b/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap index ddbd6f73b..c126aadf2 100644 --- a/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap +++ b/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing neg_xz_plane.kcl +snapshot_kind: text --- { "environments": [ @@ -182,6 +183,7 @@ description: Program memory after executing neg_xz_plane.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/parametric/program_memory.snap b/src/wasm-lib/kcl/tests/parametric/program_memory.snap index ea6ed2a6e..a651ea536 100644 --- a/src/wasm-lib/kcl/tests/parametric/program_memory.snap +++ b/src/wasm-lib/kcl/tests/parametric/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing parametric.kcl +snapshot_kind: text --- { "environments": [ @@ -288,6 +289,7 @@ description: Program memory after executing parametric.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap b/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap index 6425c6b1a..d11b953e8 100644 --- a/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap +++ b/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing parametric_with_tan_arc.kcl +snapshot_kind: text --- { "environments": [ @@ -360,6 +361,7 @@ description: Program memory after executing parametric_with_tan_arc.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap index a9342181a..065169e9c 100644 --- a/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap +++ b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing pentagon_fillet_sugar.kcl +snapshot_kind: text --- { "environments": [ @@ -713,6 +714,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -842,6 +844,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1297,6 +1300,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1426,6 +1430,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2318,6 +2323,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2782,6 +2788,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3275,6 +3282,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3404,6 +3412,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3913,6 +3922,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4042,6 +4052,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap b/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap index 33375cae4..ebf1a26ca 100644 --- a/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap +++ b/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing pipe_as_arg.kcl +snapshot_kind: text --- { "environments": [ @@ -1765,6 +1766,7 @@ description: Program memory after executing pipe_as_arg.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap b/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap index 3cdf5c833..2b99727b4 100644 --- a/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap +++ b/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing poop_chute.kcl +snapshot_kind: text --- { "environments": [ @@ -680,6 +681,7 @@ description: Program memory after executing poop_chute.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1213,6 +1215,7 @@ description: Program memory after executing poop_chute.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1764,6 +1767,7 @@ description: Program memory after executing poop_chute.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap b/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap index 9200fe835..eeb9efcdb 100644 --- a/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap +++ b/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing riddle_small.kcl +snapshot_kind: text --- { "environments": [ @@ -322,6 +323,7 @@ description: Program memory after executing riddle_small.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap index 59f1e3bc9..322697ee0 100644 --- a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch-on-chamfer-two-times-different-order.kcl +snapshot_kind: text --- { "environments": [ @@ -544,6 +545,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1330,6 +1332,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1604,6 +1607,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2622,6 +2626,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3294,6 +3299,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3568,6 +3574,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4240,6 +4247,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4469,6 +4477,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap index 5de66051b..3be1ab4f5 100644 --- a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch-on-chamfer-two-times.kcl +snapshot_kind: text --- { "environments": [ @@ -544,6 +545,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1330,6 +1332,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1604,6 +1607,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2622,6 +2626,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3294,6 +3299,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3568,6 +3574,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4240,6 +4247,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4469,6 +4477,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap index 520bcb444..e986a4198 100644 --- a/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch_in_object.kcl +snapshot_kind: text --- { "environments": [ @@ -1173,6 +1174,7 @@ description: Program memory after executing sketch_in_object.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1330,6 +1332,7 @@ description: Program memory after executing sketch_in_object.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap index 873ee9531..bdeb2380c 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch_on_face.kcl +snapshot_kind: text --- { "environments": [ @@ -344,6 +345,7 @@ description: Program memory after executing sketch_on_face.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -787,6 +789,7 @@ description: Program memory after executing sketch_on_face.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -849,6 +852,7 @@ description: Program memory after executing sketch_on_face.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap index 9b1546d96..d8c42abf6 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch_on_face_after_fillets_referencing_face.kcl +snapshot_kind: text --- { "environments": [ @@ -537,6 +538,7 @@ description: Program memory after executing sketch_on_face_after_fillets_referen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1448,6 +1450,7 @@ description: Program memory after executing sketch_on_face_after_fillets_referen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1526,6 +1529,7 @@ description: Program memory after executing sketch_on_face_after_fillets_referen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap index 1632d276f..b80e225a1 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch_on_face_circle_tagged.kcl +snapshot_kind: text --- { "environments": [ @@ -607,6 +608,7 @@ description: Program memory after executing sketch_on_face_circle_tagged.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -902,6 +904,7 @@ description: Program memory after executing sketch_on_face_circle_tagged.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1031,6 +1034,7 @@ description: Program memory after executing sketch_on_face_circle_tagged.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap index d476066a0..914475e8e 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch_on_face_end.kcl +snapshot_kind: text --- { "environments": [ @@ -541,6 +542,7 @@ description: Program memory after executing sketch_on_face_end.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -913,6 +915,7 @@ description: Program memory after executing sketch_on_face_end.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -975,6 +978,7 @@ description: Program memory after executing sketch_on_face_end.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap index af1367565..a0ab1b806 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch_on_face_end_negative_extrude.kcl +snapshot_kind: text --- { "environments": [ @@ -541,6 +542,7 @@ description: Program memory after executing sketch_on_face_end_negative_extrude. } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -913,6 +915,7 @@ description: Program memory after executing sketch_on_face_end_negative_extrude. } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -975,6 +978,7 @@ description: Program memory after executing sketch_on_face_end_negative_extrude. } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap index f18bc4216..c9155b3b0 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch_on_face_start.kcl +snapshot_kind: text --- { "environments": [ @@ -541,6 +542,7 @@ description: Program memory after executing sketch_on_face_start.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -758,6 +760,7 @@ description: Program memory after executing sketch_on_face_start.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1130,6 +1133,7 @@ description: Program memory after executing sketch_on_face_start.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1192,6 +1196,7 @@ description: Program memory after executing sketch_on_face_start.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap b/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap index bef41e213..514a4d04b 100644 --- a/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap +++ b/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing tangential_arc.kcl +snapshot_kind: text --- { "environments": [ @@ -187,6 +188,7 @@ description: Program memory after executing tangential_arc.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap b/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap index 9a197bc7b..45fedb2e6 100644 --- a/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap +++ b/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing xz_plane.kcl +snapshot_kind: text --- { "environments": [ @@ -182,6 +183,7 @@ description: Program memory after executing xz_plane.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" },