diff --git a/docs/kcl/appearance.md b/docs/kcl/appearance.md index b84a42400..378483a6e 100644 --- a/docs/kcl/appearance.md +++ b/docs/kcl/appearance.md @@ -10,11 +10,11 @@ This will work on any solid, including extruded solids, revolved solids, and she ```js appearance( - solidSet: SolidSet, + solids: [Solid], color: String, metalness?: number, roughness?: number, -): SolidSet +): [Solid] ``` @@ -22,14 +22,14 @@ appearance( | Name | Type | Description | Required | |----------|------|-------------|----------| -| `solidSet` | [`SolidSet`](/docs/kcl/types/SolidSet) | The solid(s) whose appearance is being set | Yes | +| `solids` | [`[Solid]`](/docs/kcl/types/Solid) | The solid(s) whose appearance is being set | Yes | | `color` | `String` | Color of the new material, a hex string like '#ff0000' | Yes | | `metalness` | [`number`](/docs/kcl/types/number) | Metalness of the new material, a percentage like 95.7. | No | | `roughness` | [`number`](/docs/kcl/types/number) | Roughness of the new material, a percentage like 95.7. | No | ### Returns -[`SolidSet`](/docs/kcl/types/SolidSet) - A solid or a group of solids. +[`[Solid]`](/docs/kcl/types/Solid) ### Examples diff --git a/docs/kcl/extrude.md b/docs/kcl/extrude.md index ab30a372e..62537f13b 100644 --- a/docs/kcl/extrude.md +++ b/docs/kcl/extrude.md @@ -10,9 +10,9 @@ You can provide more than one sketch to extrude, and they will all be extruded i ```js extrude( - sketchSet: SketchSet, + sketches: [Sketch], length: number, -): SolidSet +): [Solid] ``` @@ -20,12 +20,12 @@ extrude( | Name | Type | Description | Required | |----------|------|-------------|----------| -| `sketchSet` | [`SketchSet`](/docs/kcl/types/SketchSet) | Which sketch or set of sketches should be extruded | Yes | +| `sketches` | [`[Sketch]`](/docs/kcl/types/Sketch) | Which sketch or sketches should be extruded | Yes | | `length` | [`number`](/docs/kcl/types/number) | How far to extrude the given sketches | Yes | ### Returns -[`SolidSet`](/docs/kcl/types/SolidSet) - A solid or a group of solids. +[`[Solid]`](/docs/kcl/types/Solid) ### Examples diff --git a/docs/kcl/hole.md b/docs/kcl/hole.md index 704be9ea5..7dd404d78 100644 --- a/docs/kcl/hole.md +++ b/docs/kcl/hole.md @@ -10,7 +10,7 @@ Use a 2-dimensional sketch to cut a hole in another 2-dimensional sketch. ```js hole( - holeSketch: SketchSet, + holeSketch: [Sketch], sketch: Sketch, ): Sketch ``` @@ -20,7 +20,7 @@ hole( | Name | Type | Description | Required | |----------|------|-------------|----------| -| `holeSketch` | [`SketchSet`](/docs/kcl/types/SketchSet) | A sketch or a group of sketches. | Yes | +| `holeSketch` | [`[Sketch]`](/docs/kcl/types/Sketch) | | Yes | | `sketch` | [`Sketch`](/docs/kcl/types/Sketch) | | Yes | ### Returns diff --git a/docs/kcl/mirror2d.md b/docs/kcl/mirror2d.md index fa356cd05..bb0993acd 100644 --- a/docs/kcl/mirror2d.md +++ b/docs/kcl/mirror2d.md @@ -13,7 +13,7 @@ Mirror occurs around a local sketch axis rather than a global axis. ```js mirror2d( data: Mirror2dData, - sketchSet: SketchSet, + sketches: [Sketch], ): [Sketch] ``` @@ -23,7 +23,7 @@ mirror2d( | Name | Type | Description | Required | |----------|------|-------------|----------| | `data` | [`Mirror2dData`](/docs/kcl/types/Mirror2dData) | Data for a mirror. | Yes | -| `sketchSet` | [`SketchSet`](/docs/kcl/types/SketchSet) | A sketch or a group of sketches. | Yes | +| `sketches` | [`[Sketch]`](/docs/kcl/types/Sketch) | | Yes | ### Returns diff --git a/docs/kcl/patternCircular2d.md b/docs/kcl/patternCircular2d.md index ce9251584..b3ccf5f96 100644 --- a/docs/kcl/patternCircular2d.md +++ b/docs/kcl/patternCircular2d.md @@ -10,7 +10,7 @@ Repeat a 2-dimensional sketch some number of times along a partial or complete c ```js patternCircular2d( - sketchSet: SketchSet, + sketchSet: [Sketch], instances: integer, center: [number], arcDegrees: number, @@ -24,7 +24,7 @@ patternCircular2d( | Name | Type | Description | Required | |----------|------|-------------|----------| -| `sketchSet` | [`SketchSet`](/docs/kcl/types/SketchSet) | Which sketch(es) to pattern | Yes | +| `sketchSet` | [`[Sketch]`](/docs/kcl/types/Sketch) | Which sketch(es) to pattern | Yes | | `instances` | `integer` | The number of total instances. Must be greater than or equal to 1. This includes the original entity. For example, if instances is 2, there will be two copies -- the original, and one new copy. If instances is 1, this has no effect. | Yes | | `center` | [`[number]`](/docs/kcl/types/number) | The center about which to make the pattern. This is a 2D vector. | Yes | | `arcDegrees` | [`number`](/docs/kcl/types/number) | The arc angle (in degrees) to place the repetitions. Must be greater than 0. | Yes | diff --git a/docs/kcl/patternCircular3d.md b/docs/kcl/patternCircular3d.md index f10c42cef..54f003d65 100644 --- a/docs/kcl/patternCircular3d.md +++ b/docs/kcl/patternCircular3d.md @@ -10,7 +10,7 @@ Repeat a 3-dimensional solid some number of times along a partial or complete ci ```js patternCircular3d( - solidSet: SolidSet, + solids: [Solid], instances: integer, axis: [number], center: [number], @@ -25,7 +25,7 @@ patternCircular3d( | Name | Type | Description | Required | |----------|------|-------------|----------| -| `solidSet` | [`SolidSet`](/docs/kcl/types/SolidSet) | Which solid(s) to pattern | Yes | +| `solids` | [`[Solid]`](/docs/kcl/types/Solid) | Which solid(s) to pattern | Yes | | `instances` | `integer` | The number of total instances. Must be greater than or equal to 1. This includes the original entity. For example, if instances is 2, there will be two copies -- the original, and one new copy. If instances is 1, this has no effect. | Yes | | `axis` | [`[number]`](/docs/kcl/types/number) | The axis around which to make the pattern. This is a 3D vector | Yes | | `center` | [`[number]`](/docs/kcl/types/number) | The center about which to make the pattern. This is a 3D vector. | Yes | diff --git a/docs/kcl/patternLinear2d.md b/docs/kcl/patternLinear2d.md index 1104a7115..b68d2f321 100644 --- a/docs/kcl/patternLinear2d.md +++ b/docs/kcl/patternLinear2d.md @@ -10,7 +10,7 @@ Repeat a 2-dimensional sketch along some dimension, with a dynamic amount of dis ```js patternLinear2d( - sketchSet: SketchSet, + sketches: [Sketch], instances: integer, distance: number, axis: [number], @@ -23,7 +23,7 @@ patternLinear2d( | Name | Type | Description | Required | |----------|------|-------------|----------| -| `sketchSet` | [`SketchSet`](/docs/kcl/types/SketchSet) | The sketch(es) to duplicate | Yes | +| `sketches` | [`[Sketch]`](/docs/kcl/types/Sketch) | The sketch(es) to duplicate | Yes | | `instances` | `integer` | The number of total instances. Must be greater than or equal to 1. This includes the original entity. For example, if instances is 2, there will be two copies -- the original, and one new copy. If instances is 1, this has no effect. | Yes | | `distance` | [`number`](/docs/kcl/types/number) | Distance between each repetition. Also known as 'spacing'. | Yes | | `axis` | [`[number]`](/docs/kcl/types/number) | The axis of the pattern. A 2D vector. | Yes | diff --git a/docs/kcl/patternLinear3d.md b/docs/kcl/patternLinear3d.md index 22346a8a1..f1624067c 100644 --- a/docs/kcl/patternLinear3d.md +++ b/docs/kcl/patternLinear3d.md @@ -10,7 +10,7 @@ Repeat a 3-dimensional solid along a linear path, with a dynamic amount of dista ```js patternLinear3d( - solidSet: SolidSet, + solids: [Solid], instances: integer, distance: number, axis: [number], @@ -23,7 +23,7 @@ patternLinear3d( | Name | Type | Description | Required | |----------|------|-------------|----------| -| `solidSet` | [`SolidSet`](/docs/kcl/types/SolidSet) | The solid(s) to duplicate | Yes | +| `solids` | [`[Solid]`](/docs/kcl/types/Solid) | The solid(s) to duplicate | Yes | | `instances` | `integer` | The number of total instances. Must be greater than or equal to 1. This includes the original entity. For example, if instances is 2, there will be two copies -- the original, and one new copy. If instances is 1, this has no effect. | Yes | | `distance` | [`number`](/docs/kcl/types/number) | Distance between each repetition. Also known as 'spacing'. | Yes | | `axis` | [`[number]`](/docs/kcl/types/number) | The axis of the pattern. A 2D vector. | Yes | diff --git a/docs/kcl/patternTransform.md b/docs/kcl/patternTransform.md index 23bf9db7b..52247b267 100644 --- a/docs/kcl/patternTransform.md +++ b/docs/kcl/patternTransform.md @@ -36,7 +36,7 @@ The transform function returns a transform object. All properties of the object ```js patternTransform( - solidSet: SolidSet, + solids: [Solid], instances: integer, transform: FunctionSource, useOriginal?: bool, @@ -48,7 +48,7 @@ patternTransform( | Name | Type | Description | Required | |----------|------|-------------|----------| -| `solidSet` | [`SolidSet`](/docs/kcl/types/SolidSet) | The solid(s) to duplicate | Yes | +| `solids` | [`[Solid]`](/docs/kcl/types/Solid) | The solid(s) to duplicate | Yes | | `instances` | `integer` | The number of total instances. Must be greater than or equal to 1. This includes the original entity. For example, if instances is 2, there will be two copies -- the original, and one new copy. If instances is 1, this has no effect. | Yes | | `transform` | `FunctionSource` | How each replica should be transformed. The transform function takes a single parameter: an integer representing which number replication the transform is for. E.g. the first replica to be transformed will be passed the argument `1`. This simplifies your math: the transform function can rely on id `0` being the original instance passed into the `patternTransform`. See the examples. | Yes | | `useOriginal` | [`bool`](/docs/kcl/types/bool) | If the target was sketched on an extrusion, setting this will use the original sketch as the target, not the entire joined solid. Defaults to false. | No | diff --git a/docs/kcl/patternTransform2d.md b/docs/kcl/patternTransform2d.md index 6549033c5..fdcbba6c0 100644 --- a/docs/kcl/patternTransform2d.md +++ b/docs/kcl/patternTransform2d.md @@ -10,7 +10,7 @@ Just like patternTransform, but works on 2D sketches not 3D solids. ```js patternTransform2d( - sketchSet: SketchSet, + sketches: [Sketch], instances: integer, transform: FunctionSource, useOriginal?: bool, @@ -22,7 +22,7 @@ patternTransform2d( | Name | Type | Description | Required | |----------|------|-------------|----------| -| `sketchSet` | [`SketchSet`](/docs/kcl/types/SketchSet) | The sketch(es) to duplicate | Yes | +| `sketches` | [`[Sketch]`](/docs/kcl/types/Sketch) | The sketch(es) to duplicate | Yes | | `instances` | `integer` | The number of total instances. Must be greater than or equal to 1. This includes the original entity. For example, if instances is 2, there will be two copies -- the original, and one new copy. If instances is 1, this has no effect. | Yes | | `transform` | `FunctionSource` | How each replica should be transformed. The transform function takes a single parameter: an integer representing which number replication the transform is for. E.g. the first replica to be transformed will be passed the argument `1`. This simplifies your math: the transform function can rely on id `0` being the original instance passed into the `patternTransform`. See the examples. | Yes | | `useOriginal` | [`bool`](/docs/kcl/types/bool) | If the target was sketched on an extrusion, setting this will use the original sketch as the target, not the entire joined solid. Defaults to false. | No | diff --git a/docs/kcl/revolve.md b/docs/kcl/revolve.md index 8c7b533b5..881daf340 100644 --- a/docs/kcl/revolve.md +++ b/docs/kcl/revolve.md @@ -15,8 +15,8 @@ You can provide more than one sketch to revolve, and they will all be revolved a ```js revolve( data: RevolveData, - sketchSet: SketchSet, -): SolidSet + sketches: [Sketch], +): [Solid] ``` @@ -25,11 +25,11 @@ revolve( | Name | Type | Description | Required | |----------|------|-------------|----------| | `data` | [`RevolveData`](/docs/kcl/types/RevolveData) | Data for revolution surfaces. | Yes | -| `sketchSet` | [`SketchSet`](/docs/kcl/types/SketchSet) | A sketch or a group of sketches. | Yes | +| `sketches` | [`[Sketch]`](/docs/kcl/types/Sketch) | | Yes | ### Returns -[`SolidSet`](/docs/kcl/types/SolidSet) - A solid or a group of solids. +[`[Solid]`](/docs/kcl/types/Solid) ### Examples diff --git a/docs/kcl/rotate.md b/docs/kcl/rotate.md index 7d13c5424..56c902bab 100644 --- a/docs/kcl/rotate.md +++ b/docs/kcl/rotate.md @@ -24,7 +24,7 @@ When rotating a part around an axis, you specify the axis of rotation and the an ```js rotate( - solidSet: SolidOrImportedGeometry, + solids: SolidOrImportedGeometry, roll?: number, pitch?: number, yaw?: number, @@ -39,7 +39,7 @@ rotate( | Name | Type | Description | Required | |----------|------|-------------|----------| -| `solidSet` | [`SolidOrImportedGeometry`](/docs/kcl/types/SolidOrImportedGeometry) | The solid or set of solids to rotate. | Yes | +| `solids` | [`SolidOrImportedGeometry`](/docs/kcl/types/SolidOrImportedGeometry) | The solid or set of solids to rotate. | Yes | | `roll` | [`number`](/docs/kcl/types/number) | The roll angle in degrees. Must be used with `pitch` and `yaw`. Must be between -360 and 360. | No | | `pitch` | [`number`](/docs/kcl/types/number) | The pitch angle in degrees. Must be used with `roll` and `yaw`. Must be between -360 and 360. | No | | `yaw` | [`number`](/docs/kcl/types/number) | The yaw angle in degrees. Must be used with `roll` and `pitch`. Must be between -360 and 360. | No | diff --git a/docs/kcl/scale.md b/docs/kcl/scale.md index 302c9fa81..c9cddde07 100644 --- a/docs/kcl/scale.md +++ b/docs/kcl/scale.md @@ -12,7 +12,7 @@ If you want to apply the transform in global space, set `global` to `true`. The ```js scale( - solidSet: SolidOrImportedGeometry, + solids: SolidOrImportedGeometry, scale: [number], global?: bool, ): SolidOrImportedGeometry @@ -23,7 +23,7 @@ scale( | Name | Type | Description | Required | |----------|------|-------------|----------| -| `solidSet` | [`SolidOrImportedGeometry`](/docs/kcl/types/SolidOrImportedGeometry) | The solid or set of solids to scale. | Yes | +| `solids` | [`SolidOrImportedGeometry`](/docs/kcl/types/SolidOrImportedGeometry) | The solid or set of solids to scale. | Yes | | `scale` | [`[number]`](/docs/kcl/types/number) | The scale factor for the x, y, and z axes. | Yes | | `global` | [`bool`](/docs/kcl/types/bool) | If true, the transform is applied in global space. The origin of the model will move. By default, the transform is applied in local sketch axis, therefore the origin will not move. | No | diff --git a/docs/kcl/shell.md b/docs/kcl/shell.md index cfbd6bbf0..1de197be4 100644 --- a/docs/kcl/shell.md +++ b/docs/kcl/shell.md @@ -10,10 +10,10 @@ Remove volume from a 3-dimensional shape such that a wall of the provided thickn ```js shell( - solidSet: SolidSet, + solids: [Solid], thickness: number, faces: [FaceTag], -): SolidSet +): [Solid] ``` @@ -21,13 +21,13 @@ shell( | Name | Type | Description | Required | |----------|------|-------------|----------| -| `solidSet` | [`SolidSet`](/docs/kcl/types/SolidSet) | Which solid (or solids) to shell out | Yes | +| `solids` | [`[Solid]`](/docs/kcl/types/Solid) | Which solid (or solids) to shell out | Yes | | `thickness` | [`number`](/docs/kcl/types/number) | The thickness of the shell | Yes | | `faces` | [`[FaceTag]`](/docs/kcl/types/FaceTag) | The faces you want removed | Yes | ### Returns -[`SolidSet`](/docs/kcl/types/SolidSet) - A solid or a group of solids. +[`[Solid]`](/docs/kcl/types/Solid) ### Examples diff --git a/docs/kcl/std.json b/docs/kcl/std.json index e1cdbc999..26fe0c456 100644 --- a/docs/kcl/std.json +++ b/docs/kcl/std.json @@ -31474,31 +31474,27 @@ "keywordArguments": true, "args": [ { - "name": "solidSet", - "type": "SolidSet", + "name": "solids", + "type": "[Solid]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SolidSet", - "description": "A solid or a group of solids.", - "oneOf": [ - { + "title": "Array_of_Solid", + "type": "array", + "items": { + "$ref": "#/components/schemas/Solid" + }, + "definitions": { + "Solid": { "type": "object", "required": [ "artifactId", "height", "id", "sketch", - "type", "units", "value" ], "properties": { - "type": { - "type": "string", - "enum": [ - "solid" - ] - }, "id": { "description": "The id of the solid.", "type": "string", @@ -31556,28 +31552,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Solid" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solids" - ] - } - } - } - ], - "definitions": { "ArtifactId": { "type": "string", "format": "uuid" @@ -32851,71 +32825,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -33003,69 +32972,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -33082,6 +32988,74 @@ "title": "String", "type": "string", "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -34355,71 +34329,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -34507,69 +34476,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -34588,6 +34494,74 @@ "format": "double", "nullable": true, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -35861,71 +35835,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -36013,69 +35982,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -36093,6 +35999,74 @@ "format": "double", "nullable": true, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -37366,71 +37340,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -37518,69 +37487,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -37591,30 +37497,26 @@ ], "returnValue": { "name": "", - "type": "SolidSet", + "type": "[Solid]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SolidSet", - "description": "A solid or a group of solids.", - "oneOf": [ - { + "title": "Array_of_Solid", + "type": "array", + "items": { + "$ref": "#/components/schemas/Solid" + }, + "definitions": { + "Solid": { "type": "object", "required": [ "artifactId", "height", "id", "sketch", - "type", "units", "value" ], "properties": { - "type": { - "type": "string", - "enum": [ - "solid" - ] - }, "id": { "description": "The id of the solid.", "type": "string", @@ -37672,28 +37574,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Solid" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solids" - ] - } - } - } - ], - "definitions": { "ArtifactId": { "type": "string", "format": "uuid" @@ -38967,71 +38847,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -39119,69 +38994,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -78576,14 +78388,17 @@ "keywordArguments": true, "args": [ { - "name": "sketchSet", - "type": "SketchSet", + "name": "sketches", + "type": "[Sketch]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SketchSet", - "description": "A sketch or a group of sketches.", - "oneOf": [ - { + "title": "Array_of_Sketch", + "type": "array", + "items": { + "$ref": "#/components/schemas/Sketch" + }, + "definitions": { + "Sketch": { "type": "object", "required": [ "artifactId", @@ -78592,16 +78407,9 @@ "originalId", "paths", "start", - "type", "units" ], "properties": { - "type": { - "type": "string", - "enum": [ - "sketch" - ] - }, "id": { "description": "The id of the sketch (this will change when the engine's reference to it changes).", "type": "string", @@ -78654,28 +78462,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Sketch" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "sketches" - ] - } - } - } - ], - "definitions": { "Path": { "description": "A path.", "oneOf": [ @@ -79953,133 +79739,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -80164,12 +79823,75 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, "required": true, "includeInSnippet": true, - "description": "Which sketch or set of sketches should be extruded", + "description": "Which sketch or sketches should be extruded", "labelRequired": false }, { @@ -80181,6 +79903,70 @@ "type": "number", "format": "double", "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -81458,133 +81244,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -81669,6 +81328,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -81680,30 +81402,26 @@ ], "returnValue": { "name": "", - "type": "SolidSet", + "type": "[Solid]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SolidSet", - "description": "A solid or a group of solids.", - "oneOf": [ - { + "title": "Array_of_Solid", + "type": "array", + "items": { + "$ref": "#/components/schemas/Solid" + }, + "definitions": { + "Solid": { "type": "object", "required": [ "artifactId", "height", "id", "sketch", - "type", "units", "value" ], "properties": { - "type": { - "type": "string", - "enum": [ - "solid" - ] - }, "id": { "description": "The id of the solid.", "type": "string", @@ -81761,28 +81479,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Solid" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solids" - ] - } - } - } - ], - "definitions": { "ArtifactId": { "type": "string", "format": "uuid" @@ -83056,71 +82752,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -83208,69 +82899,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -96423,13 +96051,16 @@ "args": [ { "name": "holeSketch", - "type": "SketchSet", + "type": "[Sketch]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SketchSet", - "description": "A sketch or a group of sketches.", - "oneOf": [ - { + "title": "Array_of_Sketch", + "type": "array", + "items": { + "$ref": "#/components/schemas/Sketch" + }, + "definitions": { + "Sketch": { "type": "object", "required": [ "artifactId", @@ -96438,16 +96069,9 @@ "originalId", "paths", "start", - "type", "units" ], "properties": { - "type": { - "type": "string", - "enum": [ - "sketch" - ] - }, "id": { "description": "The id of the sketch (this will change when the engine's reference to it changes).", "type": "string", @@ -96500,28 +96124,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Sketch" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "sketches" - ] - } - } - } - ], - "definitions": { "Path": { "description": "A path.", "oneOf": [ @@ -97799,133 +97401,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -98010,6 +97485,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -98086,6 +97624,70 @@ } }, "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -99363,133 +98965,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -99574,6 +99049,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -125231,6 +124769,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -125363,27 +124922,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -125402,27 +124940,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -127605,6 +127122,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -127737,27 +127275,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -127776,27 +127293,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -129983,6 +129479,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -130115,27 +129632,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -130154,27 +129650,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -132501,105 +131976,15 @@ "labelRequired": true }, { - "name": "sketchSet", - "type": "SketchSet", + "name": "sketches", + "type": "[Sketch]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SketchSet", - "description": "A sketch or a group of sketches.", - "oneOf": [ - { - "type": "object", - "required": [ - "artifactId", - "id", - "on", - "originalId", - "paths", - "start", - "type", - "units" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "sketch" - ] - }, - "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" - } - } - }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Sketch" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "sketches" - ] - } - } - } - ], + "title": "Array_of_Sketch", + "type": "array", + "items": { + "$ref": "#/components/schemas/Sketch" + }, "definitions": { "Axis2dOrEdgeReference": { "description": "A 2D axis or tagged edge.", @@ -132722,6 +132107,70 @@ } } }, + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -133999,122 +133448,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "tag": { - "description": "The tag of the path.", - "allOf": [ - { - "$ref": "#/components/schemas/TagDeclarator" - } - ], - "nullable": true - }, - "__geoMeta": { - "description": "Metadata.", - "allOf": [ - { - "$ref": "#/components/schemas/GeoMeta" - } - ] - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -134199,6 +133532,58 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } } } }, @@ -136168,13 +135553,16 @@ "args": [ { "name": "sketchSet", - "type": "SketchSet", + "type": "[Sketch]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SketchSet", - "description": "A sketch or a group of sketches.", - "oneOf": [ - { + "title": "Array_of_Sketch", + "type": "array", + "items": { + "$ref": "#/components/schemas/Sketch" + }, + "definitions": { + "Sketch": { "type": "object", "required": [ "artifactId", @@ -136183,16 +135571,9 @@ "originalId", "paths", "start", - "type", "units" ], "properties": { - "type": { - "type": "string", - "enum": [ - "sketch" - ] - }, "id": { "description": "The id of the sketch (this will change when the engine's reference to it changes).", "type": "string", @@ -136245,28 +135626,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Sketch" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "sketches" - ] - } - } - } - ], - "definitions": { "Path": { "description": "A path.", "oneOf": [ @@ -137544,133 +136903,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -137755,6 +136987,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -137773,6 +137068,70 @@ "format": "uint32", "minimum": 0.0, "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -139050,133 +138409,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -139261,6 +138493,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -139283,6 +138578,70 @@ "maxItems": 2, "minItems": 2, "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -140560,133 +139919,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -140771,6 +140003,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -140788,6 +140083,70 @@ "type": "number", "format": "double", "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -142065,133 +141424,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -142276,6 +141508,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -142292,6 +141587,70 @@ "title": "Boolean", "type": "boolean", "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -143569,133 +142928,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -143780,6 +143012,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -143797,6 +143092,70 @@ "type": "boolean", "nullable": true, "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -145074,133 +144433,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -145285,6 +144517,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -146813,31 +146108,27 @@ "keywordArguments": true, "args": [ { - "name": "solidSet", - "type": "SolidSet", + "name": "solids", + "type": "[Solid]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SolidSet", - "description": "A solid or a group of solids.", - "oneOf": [ - { + "title": "Array_of_Solid", + "type": "array", + "items": { + "$ref": "#/components/schemas/Solid" + }, + "definitions": { + "Solid": { "type": "object", "required": [ "artifactId", "height", "id", "sketch", - "type", "units", "value" ], "properties": { - "type": { - "type": "string", - "enum": [ - "solid" - ] - }, "id": { "description": "The id of the solid.", "type": "string", @@ -146895,28 +146186,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Solid" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solids" - ] - } - } - } - ], - "definitions": { "ArtifactId": { "type": "string", "format": "uuid" @@ -148190,71 +147459,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -148342,69 +147606,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -148423,6 +147624,74 @@ "format": "uint32", "minimum": 0.0, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -149696,71 +148965,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -149848,69 +149112,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -149933,6 +149134,74 @@ "maxItems": 3, "minItems": 3, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -151206,71 +150475,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -151358,69 +150622,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -151443,6 +150644,74 @@ "maxItems": 3, "minItems": 3, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -152716,71 +151985,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -152868,69 +152132,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -152948,6 +152149,74 @@ "type": "number", "format": "double", "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -154221,71 +153490,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -154373,69 +153637,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -154452,6 +153653,74 @@ "title": "Boolean", "type": "boolean", "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -155725,71 +154994,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -155877,69 +155141,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -155957,6 +155158,74 @@ "type": "boolean", "nullable": true, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -157230,71 +156499,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -157382,69 +156646,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -158973,14 +158174,17 @@ "keywordArguments": true, "args": [ { - "name": "sketchSet", - "type": "SketchSet", + "name": "sketches", + "type": "[Sketch]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SketchSet", - "description": "A sketch or a group of sketches.", - "oneOf": [ - { + "title": "Array_of_Sketch", + "type": "array", + "items": { + "$ref": "#/components/schemas/Sketch" + }, + "definitions": { + "Sketch": { "type": "object", "required": [ "artifactId", @@ -158989,16 +158193,9 @@ "originalId", "paths", "start", - "type", "units" ], "properties": { - "type": { - "type": "string", - "enum": [ - "sketch" - ] - }, "id": { "description": "The id of the sketch (this will change when the engine's reference to it changes).", "type": "string", @@ -159051,28 +158248,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Sketch" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "sketches" - ] - } - } - } - ], - "definitions": { "Path": { "description": "A path.", "oneOf": [ @@ -160350,133 +159525,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -160561,6 +159609,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -160579,6 +159690,70 @@ "format": "uint32", "minimum": 0.0, "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -161856,133 +161031,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -162067,6 +161115,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -162084,6 +161195,70 @@ "type": "number", "format": "double", "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -163361,133 +162536,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -163572,6 +162620,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -163594,6 +162705,70 @@ "maxItems": 2, "minItems": 2, "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -164871,133 +164046,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -165082,6 +164130,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -165099,6 +164210,70 @@ "type": "boolean", "nullable": true, "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -166376,133 +165551,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -166587,6 +165635,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -168115,31 +167226,27 @@ "keywordArguments": true, "args": [ { - "name": "solidSet", - "type": "SolidSet", + "name": "solids", + "type": "[Solid]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SolidSet", - "description": "A solid or a group of solids.", - "oneOf": [ - { + "title": "Array_of_Solid", + "type": "array", + "items": { + "$ref": "#/components/schemas/Solid" + }, + "definitions": { + "Solid": { "type": "object", "required": [ "artifactId", "height", "id", "sketch", - "type", "units", "value" ], "properties": { - "type": { - "type": "string", - "enum": [ - "solid" - ] - }, "id": { "description": "The id of the solid.", "type": "string", @@ -168197,28 +167304,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Solid" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solids" - ] - } - } - } - ], - "definitions": { "ArtifactId": { "type": "string", "format": "uuid" @@ -169492,71 +168577,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -169644,69 +168724,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -169725,6 +168742,74 @@ "format": "uint32", "minimum": 0.0, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -170998,71 +170083,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -171150,69 +170230,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -171230,6 +170247,74 @@ "type": "number", "format": "double", "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -172503,71 +171588,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -172655,69 +171735,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -172740,6 +171757,74 @@ "maxItems": 3, "minItems": 3, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -174013,71 +173098,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -174165,69 +173245,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -174245,6 +173262,74 @@ "type": "boolean", "nullable": true, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -175518,71 +174603,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -175670,69 +174750,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -177263,31 +176280,27 @@ "keywordArguments": true, "args": [ { - "name": "solidSet", - "type": "SolidSet", + "name": "solids", + "type": "[Solid]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SolidSet", - "description": "A solid or a group of solids.", - "oneOf": [ - { + "title": "Array_of_Solid", + "type": "array", + "items": { + "$ref": "#/components/schemas/Solid" + }, + "definitions": { + "Solid": { "type": "object", "required": [ "artifactId", "height", "id", "sketch", - "type", "units", "value" ], "properties": { - "type": { - "type": "string", - "enum": [ - "solid" - ] - }, "id": { "description": "The id of the solid.", "type": "string", @@ -177345,28 +176358,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Solid" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solids" - ] - } - } - } - ], - "definitions": { "ArtifactId": { "type": "string", "format": "uuid" @@ -178640,71 +177631,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -178792,69 +177778,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -178873,6 +177796,74 @@ "format": "uint32", "minimum": 0.0, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -180146,71 +179137,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -180298,69 +179284,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -180377,6 +179300,74 @@ "title": "FunctionSource", "type": "null", "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -181650,71 +180641,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -181802,69 +180788,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -181882,6 +180805,74 @@ "type": "boolean", "nullable": true, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -183155,71 +182146,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -183307,69 +182293,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -184903,14 +183826,17 @@ "keywordArguments": true, "args": [ { - "name": "sketchSet", - "type": "SketchSet", + "name": "sketches", + "type": "[Sketch]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SketchSet", - "description": "A sketch or a group of sketches.", - "oneOf": [ - { + "title": "Array_of_Sketch", + "type": "array", + "items": { + "$ref": "#/components/schemas/Sketch" + }, + "definitions": { + "Sketch": { "type": "object", "required": [ "artifactId", @@ -184919,16 +183845,9 @@ "originalId", "paths", "start", - "type", "units" ], "properties": { - "type": { - "type": "string", - "enum": [ - "sketch" - ] - }, "id": { "description": "The id of the sketch (this will change when the engine's reference to it changes).", "type": "string", @@ -184981,28 +183900,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Sketch" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "sketches" - ] - } - } - } - ], - "definitions": { "Path": { "description": "A path.", "oneOf": [ @@ -186280,133 +185177,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -186491,6 +185261,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -186509,6 +185342,70 @@ "format": "uint32", "minimum": 0.0, "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -187786,133 +186683,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -187997,6 +186767,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -188013,6 +186846,70 @@ "title": "FunctionSource", "type": "null", "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -189290,133 +188187,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -189501,6 +188271,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -189518,6 +188351,70 @@ "type": "boolean", "nullable": true, "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -190795,133 +189692,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -191006,6 +189776,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -197751,6 +196584,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -197883,27 +196737,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -197922,27 +196755,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -200124,6 +198936,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -200256,27 +199089,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -200295,27 +199107,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -200883,6 +199674,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -201015,27 +199827,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -201054,27 +199845,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -207754,6 +206524,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -207886,27 +206677,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -207925,27 +206695,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -210125,6 +208874,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -210257,27 +209027,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -210296,27 +209045,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -210532,6 +209260,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -210664,27 +209413,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -210703,27 +209431,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -212904,6 +211611,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -213036,27 +211764,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -213075,27 +211782,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -213663,6 +212349,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -213795,27 +212502,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -213834,27 +212520,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -215701,6 +214366,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -215833,27 +214519,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -215872,27 +214537,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -218072,6 +216716,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -218204,27 +216869,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -218243,27 +216887,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -218479,6 +217102,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -218611,27 +217255,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -218650,27 +217273,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -220853,6 +219455,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -220985,27 +219608,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -221024,27 +219626,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -223225,6 +221806,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -223357,27 +221959,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -223396,27 +221977,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -223984,6 +222544,27 @@ } } }, + { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "HomArray" + ] + }, + "value": { + "type": "array", + "items": { + "$ref": "#/components/schemas/KclValue" + } + } + } + }, { "type": "object", "required": [ @@ -224116,27 +222697,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Sketches" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Sketch" - } - } - } - }, { "type": "object", "required": [ @@ -224155,27 +222715,6 @@ } } }, - { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "Solids" - ] - }, - "value": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Solid" - } - } - } - }, { "type": "object", "required": [ @@ -226134,105 +224673,15 @@ "labelRequired": true }, { - "name": "sketchSet", - "type": "SketchSet", + "name": "sketches", + "type": "[Sketch]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SketchSet", - "description": "A sketch or a group of sketches.", - "oneOf": [ - { - "type": "object", - "required": [ - "artifactId", - "id", - "on", - "originalId", - "paths", - "start", - "type", - "units" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "sketch" - ] - }, - "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" - } - } - }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Sketch" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "sketches" - ] - } - } - } - ], + "title": "Array_of_Sketch", + "type": "array", + "items": { + "$ref": "#/components/schemas/Sketch" + }, "definitions": { "Axis2dOrEdgeReference": { "description": "A 2D axis or tagged edge.", @@ -226355,6 +224804,70 @@ } } }, + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -227632,122 +226145,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "tag": { - "description": "The tag of the path.", - "allOf": [ - { - "$ref": "#/components/schemas/TagDeclarator" - } - ], - "nullable": true - }, - "__geoMeta": { - "description": "Metadata.", - "allOf": [ - { - "$ref": "#/components/schemas/GeoMeta" - } - ] - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -227832,6 +226229,58 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "tag": { + "description": "The tag of the path.", + "allOf": [ + { + "$ref": "#/components/schemas/TagDeclarator" + } + ], + "nullable": true + }, + "__geoMeta": { + "description": "Metadata.", + "allOf": [ + { + "$ref": "#/components/schemas/GeoMeta" + } + ] + } + } } } }, @@ -227842,30 +226291,26 @@ ], "returnValue": { "name": "", - "type": "SolidSet", + "type": "[Solid]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SolidSet", - "description": "A solid or a group of solids.", - "oneOf": [ - { + "title": "Array_of_Solid", + "type": "array", + "items": { + "$ref": "#/components/schemas/Solid" + }, + "definitions": { + "Solid": { "type": "object", "required": [ "artifactId", "height", "id", "sketch", - "type", "units", "value" ], "properties": { - "type": { - "type": "string", - "enum": [ - "solid" - ] - }, "id": { "description": "The id of the solid.", "type": "string", @@ -227923,28 +226368,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Solid" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solids" - ] - } - } - } - ], - "definitions": { "ArtifactId": { "type": "string", "format": "uuid" @@ -229218,71 +227641,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -229370,69 +227788,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -229462,88 +227817,13 @@ "keywordArguments": true, "args": [ { - "name": "solidSet", + "name": "solids", "type": "SolidOrImportedGeometry", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", "title": "SolidOrImportedGeometry", "description": "Data for a solid or an imported geometry.", "oneOf": [ - { - "type": "object", - "required": [ - "artifactId", - "height", - "id", - "sketch", - "type", - "units", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solid" - ] - }, - "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" - } - } - }, { "description": "Data for an imported geometry.", "type": "object", @@ -229595,6 +227875,74 @@ } ], "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -230868,71 +229216,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -231020,69 +229363,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -231101,6 +229381,74 @@ "format": "double", "nullable": true, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -232374,71 +230722,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -232526,69 +230869,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -232607,6 +230887,74 @@ "format": "double", "nullable": true, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -233880,71 +232228,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -234032,69 +232375,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -234113,6 +232393,74 @@ "format": "double", "nullable": true, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -235386,71 +233734,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -235538,69 +233881,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -235624,6 +233904,74 @@ "minItems": 3, "nullable": true, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -236897,71 +235245,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -237049,69 +235392,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -237129,6 +235409,74 @@ "format": "double", "nullable": true, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -238402,71 +236750,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -238554,69 +236897,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -238633,6 +236913,74 @@ "type": "boolean", "nullable": true, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -239906,71 +238254,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -240058,69 +238401,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -240138,23 +238418,67 @@ "description": "Data for a solid or an imported geometry.", "oneOf": [ { + "description": "Data for an imported geometry.", "type": "object", "required": [ - "artifactId", - "height", "id", - "sketch", "type", - "units", "value" ], "properties": { "type": { "type": "string", "enum": [ - "solid" + "importedGeometry" ] }, + "id": { + "description": "The ID of the imported geometry.", + "type": "string", + "format": "uuid" + }, + "value": { + "description": "The original file paths.", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + { + "type": [ + "object", + "array" + ], + "items": { + "$ref": "#/components/schemas/Solid" + }, + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "solidSet" + ] + } + } + } + ], + "definitions": { + "Solid": { + "type": "object", + "required": [ + "artifactId", + "height", + "id", + "sketch", + "units", + "value" + ], + "properties": { "id": { "description": "The id of the solid.", "type": "string", @@ -240212,57 +238536,6 @@ } } }, - { - "description": "Data for an imported geometry.", - "type": "object", - "required": [ - "id", - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "importedGeometry" - ] - }, - "id": { - "description": "The ID of the imported geometry.", - "type": "string", - "format": "uuid" - }, - "value": { - "description": "The original file paths.", - "type": "array", - "items": { - "type": "string" - } - } - } - }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Solid" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solidSet" - ] - } - } - } - ], - "definitions": { "ArtifactId": { "type": "string", "format": "uuid" @@ -241536,71 +239809,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -241688,69 +239956,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -241817,88 +240022,13 @@ "keywordArguments": true, "args": [ { - "name": "solidSet", + "name": "solids", "type": "SolidOrImportedGeometry", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", "title": "SolidOrImportedGeometry", "description": "Data for a solid or an imported geometry.", "oneOf": [ - { - "type": "object", - "required": [ - "artifactId", - "height", - "id", - "sketch", - "type", - "units", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solid" - ] - }, - "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" - } - } - }, { "description": "Data for an imported geometry.", "type": "object", @@ -241950,6 +240080,74 @@ } ], "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -243223,71 +241421,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -243375,69 +241568,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -243460,6 +241590,74 @@ "maxItems": 3, "minItems": 3, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -244733,71 +242931,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -244885,69 +243078,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -244965,6 +243095,74 @@ "type": "boolean", "nullable": true, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -246238,71 +244436,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -246390,69 +244583,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -246470,23 +244600,67 @@ "description": "Data for a solid or an imported geometry.", "oneOf": [ { + "description": "Data for an imported geometry.", "type": "object", "required": [ - "artifactId", - "height", "id", - "sketch", "type", - "units", "value" ], "properties": { "type": { "type": "string", "enum": [ - "solid" + "importedGeometry" ] }, + "id": { + "description": "The ID of the imported geometry.", + "type": "string", + "format": "uuid" + }, + "value": { + "description": "The original file paths.", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + { + "type": [ + "object", + "array" + ], + "items": { + "$ref": "#/components/schemas/Solid" + }, + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "solidSet" + ] + } + } + } + ], + "definitions": { + "Solid": { + "type": "object", + "required": [ + "artifactId", + "height", + "id", + "sketch", + "units", + "value" + ], + "properties": { "id": { "description": "The id of the solid.", "type": "string", @@ -246544,57 +244718,6 @@ } } }, - { - "description": "Data for an imported geometry.", - "type": "object", - "required": [ - "id", - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "importedGeometry" - ] - }, - "id": { - "description": "The ID of the imported geometry.", - "type": "string", - "format": "uuid" - }, - "value": { - "description": "The original file paths.", - "type": "array", - "items": { - "type": "string" - } - } - } - }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Solid" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solidSet" - ] - } - } - } - ], - "definitions": { "ArtifactId": { "type": "string", "format": "uuid" @@ -247868,71 +245991,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -248020,69 +246138,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -248500,31 +246555,27 @@ "keywordArguments": true, "args": [ { - "name": "solidSet", - "type": "SolidSet", + "name": "solids", + "type": "[Solid]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SolidSet", - "description": "A solid or a group of solids.", - "oneOf": [ - { + "title": "Array_of_Solid", + "type": "array", + "items": { + "$ref": "#/components/schemas/Solid" + }, + "definitions": { + "Solid": { "type": "object", "required": [ "artifactId", "height", "id", "sketch", - "type", "units", "value" ], "properties": { - "type": { - "type": "string", - "enum": [ - "solid" - ] - }, "id": { "description": "The id of the solid.", "type": "string", @@ -248582,28 +246633,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Solid" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solids" - ] - } - } - } - ], - "definitions": { "ArtifactId": { "type": "string", "format": "uuid" @@ -249877,71 +247906,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -250029,69 +248053,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -250109,6 +248070,74 @@ "type": "number", "format": "double", "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -251382,71 +249411,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -251534,69 +249558,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -251616,6 +249577,74 @@ "$ref": "#/components/schemas/FaceTag" }, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -252889,71 +250918,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -253042,69 +251066,6 @@ } ] }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "FaceTag": { "description": "A tag for a face.", "anyOf": [ @@ -253149,30 +251110,26 @@ ], "returnValue": { "name": "", - "type": "SolidSet", + "type": "[Solid]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SolidSet", - "description": "A solid or a group of solids.", - "oneOf": [ - { + "title": "Array_of_Solid", + "type": "array", + "items": { + "$ref": "#/components/schemas/Solid" + }, + "definitions": { + "Solid": { "type": "object", "required": [ "artifactId", "height", "id", "sketch", - "type", "units", "value" ], "properties": { - "type": { - "type": "string", - "enum": [ - "solid" - ] - }, "id": { "description": "The id of the solid.", "type": "string", @@ -253230,28 +251187,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Solid" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solids" - ] - } - } - } - ], - "definitions": { "ArtifactId": { "type": "string", "format": "uuid" @@ -254525,71 +252460,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -254677,69 +252607,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -264624,14 +262491,17 @@ "keywordArguments": true, "args": [ { - "name": "sketchSet", - "type": "SketchSet", + "name": "sketches", + "type": "[Sketch]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SketchSet", - "description": "A sketch or a group of sketches.", - "oneOf": [ - { + "title": "Array_of_Sketch", + "type": "array", + "items": { + "$ref": "#/components/schemas/Sketch" + }, + "definitions": { + "Sketch": { "type": "object", "required": [ "artifactId", @@ -264640,16 +262510,9 @@ "originalId", "paths", "start", - "type", "units" ], "properties": { - "type": { - "type": "string", - "enum": [ - "sketch" - ] - }, "id": { "description": "The id of the sketch (this will change when the engine's reference to it changes).", "type": "string", @@ -264702,28 +262565,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Sketch" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "sketches" - ] - } - } - } - ], - "definitions": { "Path": { "description": "A path.", "oneOf": [ @@ -266001,133 +263842,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -266212,6 +263926,69 @@ } } ] + }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } } } }, @@ -266236,6 +264013,70 @@ } ], "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -267513,133 +265354,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -267725,6 +265439,69 @@ } ] }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } + }, "Helix": { "description": "A helix.", "type": "object", @@ -267785,6 +265562,70 @@ "type": "boolean", "nullable": true, "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -269062,133 +266903,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -269274,6 +266988,69 @@ } ] }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } + }, "Helix": { "description": "A helix.", "type": "object", @@ -269334,6 +267111,70 @@ "format": "double", "nullable": true, "definitions": { + "Sketch": { + "type": "object", + "required": [ + "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" + } + } + }, "Path": { "description": "A path.", "oneOf": [ @@ -270611,133 +268452,6 @@ } ] }, - "Sketch": { - "type": "object", - "required": [ - "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" - } - } - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } - }, "EdgeCut": { "description": "A fillet or a chamfer.", "oneOf": [ @@ -270823,6 +268537,69 @@ } ] }, + "BasePath": { + "description": "A base path.", + "type": "object", + "required": [ + "__geoMeta", + "from", + "to", + "units" + ], + "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 + }, + "units": { + "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" + } + } + }, "Helix": { "description": "A helix.", "type": "object", @@ -270876,30 +268653,26 @@ ], "returnValue": { "name": "", - "type": "SolidSet", + "type": "[Solid]", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", - "title": "SolidSet", - "description": "A solid or a group of solids.", - "oneOf": [ - { + "title": "Array_of_Solid", + "type": "array", + "items": { + "$ref": "#/components/schemas/Solid" + }, + "definitions": { + "Solid": { "type": "object", "required": [ "artifactId", "height", "id", "sketch", - "type", "units", "value" ], "properties": { - "type": { - "type": "string", - "enum": [ - "solid" - ] - }, "id": { "description": "The id of the solid.", "type": "string", @@ -270957,28 +268730,6 @@ } } }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Solid" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solids" - ] - } - } - } - ], - "definitions": { "ArtifactId": { "type": "string", "format": "uuid" @@ -272252,71 +270003,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -272404,69 +270150,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -286670,88 +284353,13 @@ "keywordArguments": true, "args": [ { - "name": "solidSet", + "name": "solids", "type": "SolidOrImportedGeometry", "schema": { "$schema": "https://spec.openapis.org/oas/3.0/schema/2019-04-02#/definitions/Schema", "title": "SolidOrImportedGeometry", "description": "Data for a solid or an imported geometry.", "oneOf": [ - { - "type": "object", - "required": [ - "artifactId", - "height", - "id", - "sketch", - "type", - "units", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solid" - ] - }, - "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" - } - } - }, { "description": "Data for an imported geometry.", "type": "object", @@ -286803,6 +284411,74 @@ } ], "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -288076,71 +285752,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -288228,69 +285899,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -288313,6 +285921,74 @@ "maxItems": 3, "minItems": 3, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -289586,71 +287262,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -289738,69 +287409,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -289818,6 +287426,74 @@ "type": "boolean", "nullable": true, "definitions": { + "Solid": { + "type": "object", + "required": [ + "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" + } + } + }, "ArtifactId": { "type": "string", "format": "uuid" @@ -291091,71 +288767,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -291243,69 +288914,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, @@ -291323,23 +288931,67 @@ "description": "Data for a solid or an imported geometry.", "oneOf": [ { + "description": "Data for an imported geometry.", "type": "object", "required": [ - "artifactId", - "height", "id", - "sketch", "type", - "units", "value" ], "properties": { "type": { "type": "string", "enum": [ - "solid" + "importedGeometry" ] }, + "id": { + "description": "The ID of the imported geometry.", + "type": "string", + "format": "uuid" + }, + "value": { + "description": "The original file paths.", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + { + "type": [ + "object", + "array" + ], + "items": { + "$ref": "#/components/schemas/Solid" + }, + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "solidSet" + ] + } + } + } + ], + "definitions": { + "Solid": { + "type": "object", + "required": [ + "artifactId", + "height", + "id", + "sketch", + "units", + "value" + ], + "properties": { "id": { "description": "The id of the solid.", "type": "string", @@ -291397,57 +289049,6 @@ } } }, - { - "description": "Data for an imported geometry.", - "type": "object", - "required": [ - "id", - "type", - "value" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "importedGeometry" - ] - }, - "id": { - "description": "The ID of the imported geometry.", - "type": "string", - "format": "uuid" - }, - "value": { - "description": "The original file paths.", - "type": "array", - "items": { - "type": "string" - } - } - } - }, - { - "type": [ - "object", - "array" - ], - "items": { - "$ref": "#/components/schemas/Solid" - }, - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "solidSet" - ] - } - } - } - ], - "definitions": { "ArtifactId": { "type": "string", "format": "uuid" @@ -292721,71 +290322,66 @@ } } }, - "Solid": { + "BasePath": { + "description": "A base path.", "type": "object", "required": [ - "artifactId", - "height", - "id", - "sketch", - "units", - "value" + "__geoMeta", + "from", + "to", + "units" ], "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.", + "from": { + "description": "The from point.", "type": "array", "items": { - "$ref": "#/components/schemas/ExtrudeSurface" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, - "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.", + "to": { + "description": "The to point.", "type": "array", "items": { - "$ref": "#/components/schemas/EdgeCut" - } + "type": "number", + "format": "double" + }, + "maxItems": 2, + "minItems": 2 }, "units": { "$ref": "#/components/schemas/UnitLen" + }, + "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": [ + "value" + ], + "properties": { + "value": { + "type": "string" } } }, @@ -292873,69 +290469,6 @@ } } ] - }, - "BasePath": { - "description": "A base path.", - "type": "object", - "required": [ - "__geoMeta", - "from", - "to", - "units" - ], - "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 - }, - "units": { - "$ref": "#/components/schemas/UnitLen" - }, - "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": [ - "value" - ], - "properties": { - "value": { - "type": "string" - } - } } } }, diff --git a/docs/kcl/sweep.md b/docs/kcl/sweep.md index 25b518bb4..fdc494244 100644 --- a/docs/kcl/sweep.md +++ b/docs/kcl/sweep.md @@ -12,11 +12,11 @@ You can provide more than one sketch to sweep, and they will all be swept along ```js sweep( - sketchSet: SketchSet, + sketches: [Sketch], path: SweepPath, sectional?: bool, tolerance?: number, -): SolidSet +): [Solid] ``` @@ -24,14 +24,14 @@ sweep( | Name | Type | Description | Required | |----------|------|-------------|----------| -| `sketchSet` | [`SketchSet`](/docs/kcl/types/SketchSet) | The sketch or set of sketches that should be swept in space | Yes | +| `sketches` | [`[Sketch]`](/docs/kcl/types/Sketch) | The sketch or set of sketches that should be swept in space | Yes | | `path` | [`SweepPath`](/docs/kcl/types/SweepPath) | The path to sweep the sketch along | Yes | | `sectional` | [`bool`](/docs/kcl/types/bool) | If true, the sweep will be broken up into sub-sweeps (extrusions, revolves, sweeps) based on the trajectory path components. | No | | `tolerance` | [`number`](/docs/kcl/types/number) | Tolerance for this operation | No | ### Returns -[`SolidSet`](/docs/kcl/types/SolidSet) - A solid or a group of solids. +[`[Solid]`](/docs/kcl/types/Solid) ### Examples diff --git a/docs/kcl/translate.md b/docs/kcl/translate.md index d10f3d480..d33204863 100644 --- a/docs/kcl/translate.md +++ b/docs/kcl/translate.md @@ -10,7 +10,7 @@ Move a solid. ```js translate( - solidSet: SolidOrImportedGeometry, + solids: SolidOrImportedGeometry, translate: [number], global?: bool, ): SolidOrImportedGeometry @@ -21,7 +21,7 @@ translate( | Name | Type | Description | Required | |----------|------|-------------|----------| -| `solidSet` | [`SolidOrImportedGeometry`](/docs/kcl/types/SolidOrImportedGeometry) | The solid or set of solids to move. | Yes | +| `solids` | [`SolidOrImportedGeometry`](/docs/kcl/types/SolidOrImportedGeometry) | The solid or set of solids to move. | Yes | | `translate` | [`[number]`](/docs/kcl/types/number) | The amount to move the solid in all three axes. | Yes | | `global` | [`bool`](/docs/kcl/types/bool) | If true, the transform is applied in global space. The origin of the model will move. By default, the transform is applied in local sketch axis, therefore the origin will not move. | No | diff --git a/docs/kcl/types/KclValue.md b/docs/kcl/types/KclValue.md index ddd24469f..a9f0d7eec 100644 --- a/docs/kcl/types/KclValue.md +++ b/docs/kcl/types/KclValue.md @@ -100,6 +100,22 @@ Any KCL value. +## Properties + +| Property | Type | Description | Required | +|----------|------|-------------|----------| +| `type` |enum: `HomArray`| | No | +| `value` |`[` [`KclValue`](/docs/kcl/types/KclValue) `]`| | No | + + +---- + +**Type:** `object` + + + + + ## Properties | Property | Type | Description | Required | @@ -199,22 +215,6 @@ Any KCL value. -## Properties - -| Property | Type | Description | Required | -|----------|------|-------------|----------| -| `type` |enum: `Sketches`| | No | -| `value` |`[` [`Sketch`](/docs/kcl/types/Sketch) `]`| | No | - - ----- - -**Type:** `object` - - - - - ## Properties | Property | Type | Description | Required | @@ -231,22 +231,6 @@ Any KCL value. -## Properties - -| Property | Type | Description | Required | -|----------|------|-------------|----------| -| `type` |enum: `Solids`| | No | -| `value` |`[` [`Solid`](/docs/kcl/types/Solid) `]`| | No | - - ----- - -**Type:** `object` - - - - - ## Properties | Property | Type | Description | Required | diff --git a/docs/kcl/types/SketchSet.md b/docs/kcl/types/SketchSet.md deleted file mode 100644 index ba9517063..000000000 --- a/docs/kcl/types/SketchSet.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -title: "SketchSet" -excerpt: "A sketch or a group of sketches." -layout: manual ---- - -A sketch or a group of sketches. - - - - - -**This schema accepts exactly one of the following:** - - -**Type:** `object` - - - - - -## Properties - -| Property | Type | Description | Required | -|----------|------|-------------|----------| -| `type` |enum: `sketch`| | No | -| `id` |[`string`](/docs/kcl/types/string)| The id of the sketch (this will change when the engine's reference to it changes). | No | -| `paths` |`[` [`Path`](/docs/kcl/types/Path) `]`| The paths in the sketch. | No | -| `on` |[`SketchSurface`](/docs/kcl/types/SketchSurface)| What the sketch is on (can be a plane or a face). | No | -| `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`](/docs/kcl/types/string)| | No | -| `units` |[`UnitLen`](/docs/kcl/types/UnitLen)| A unit of length. | No | - - ----- - -**Type:** `[object, array]` - -`[` [`Sketch`](/docs/kcl/types/Sketch) `]` - - - -## Properties - -| Property | Type | Description | Required | -|----------|------|-------------|----------| -| `type` |enum: `sketches`| | No | - - ----- - - - - diff --git a/docs/kcl/types/SolidOrImportedGeometry.md b/docs/kcl/types/SolidOrImportedGeometry.md index 7b669973c..5944c7ba5 100644 --- a/docs/kcl/types/SolidOrImportedGeometry.md +++ b/docs/kcl/types/SolidOrImportedGeometry.md @@ -12,30 +12,6 @@ Data for a solid or an imported geometry. **This schema accepts exactly one of the following:** - -**Type:** `object` - - - - - -## Properties - -| Property | Type | Description | Required | -|----------|------|-------------|----------| -| `type` |enum: `solid`| | No | -| `id` |[`string`](/docs/kcl/types/string)| The id of the solid. | No | -| `artifactId` |[`ArtifactId`](/docs/kcl/types/ArtifactId)| The artifact ID of the solid. Unlike `id`, this doesn't change. | No | -| `value` |`[` [`ExtrudeSurface`](/docs/kcl/types/ExtrudeSurface) `]`| The extrude surfaces. | No | -| `sketch` |[`Sketch`](/docs/kcl/types/Sketch)| The sketch. | No | -| `height` |[`number`](/docs/kcl/types/number)| The height of the solid. | No | -| `startCapId` |[`string`](/docs/kcl/types/string)| The id of the extrusion start cap | No | -| `endCapId` |[`string`](/docs/kcl/types/string)| The id of the extrusion end cap | No | -| `edgeCuts` |`[` [`EdgeCut`](/docs/kcl/types/EdgeCut) `]`| Chamfers or fillets on this solid. | No | -| `units` |[`UnitLen`](/docs/kcl/types/UnitLen)| A unit of length. | No | - - ----- Data for an imported geometry. **Type:** `object` diff --git a/docs/kcl/types/SolidSet.md b/docs/kcl/types/SolidSet.md deleted file mode 100644 index 7f1c542b0..000000000 --- a/docs/kcl/types/SolidSet.md +++ /dev/null @@ -1,57 +0,0 @@ ---- -title: "SolidSet" -excerpt: "A solid or a group of solids." -layout: manual ---- - -A solid or a group of solids. - - - - - -**This schema accepts exactly one of the following:** - - -**Type:** `object` - - - - - -## Properties - -| Property | Type | Description | Required | -|----------|------|-------------|----------| -| `type` |enum: `solid`| | No | -| `id` |[`string`](/docs/kcl/types/string)| The id of the solid. | No | -| `artifactId` |[`ArtifactId`](/docs/kcl/types/ArtifactId)| The artifact ID of the solid. Unlike `id`, this doesn't change. | No | -| `value` |`[` [`ExtrudeSurface`](/docs/kcl/types/ExtrudeSurface) `]`| The extrude surfaces. | No | -| `sketch` |[`Sketch`](/docs/kcl/types/Sketch)| The sketch. | No | -| `height` |[`number`](/docs/kcl/types/number)| The height of the solid. | No | -| `startCapId` |[`string`](/docs/kcl/types/string)| The id of the extrusion start cap | No | -| `endCapId` |[`string`](/docs/kcl/types/string)| The id of the extrusion end cap | No | -| `edgeCuts` |`[` [`EdgeCut`](/docs/kcl/types/EdgeCut) `]`| Chamfers or fillets on this solid. | No | -| `units` |[`UnitLen`](/docs/kcl/types/UnitLen)| A unit of length. | No | - - ----- - -**Type:** `[object, array]` - -`[` [`Solid`](/docs/kcl/types/Solid) `]` - - - -## Properties - -| Property | Type | Description | Required | -|----------|------|-------------|----------| -| `type` |enum: `solids`| | No | - - ----- - - - - diff --git a/public/kcl-samples/step/a-parametric-bearing-pillow-block.step b/public/kcl-samples/step/a-parametric-bearing-pillow-block.step index 352eac69a..8e4392940 100644 --- a/public/kcl-samples/step/a-parametric-bearing-pillow-block.step +++ b/public/kcl-samples/step/a-parametric-bearing-pillow-block.step @@ -192,7 +192,7 @@ DATA; #176 = CARTESIAN_POINT('NONE', (0.02734473691501536, 0.019049, 0.055340286375673856)); #177 = CARTESIAN_POINT('NONE', (0.0274427235672502, 0.019049, 0.05511825220075177)); #178 = CARTESIAN_POINT('NONE', (0.027444015950899316, 0.019049, 0.05511532370660824)); -#179 = CARTESIAN_POINT('NONE', (0.02755437216778796, 0.019049, 0.054896708549276654)); +#179 = CARTESIAN_POINT('NONE', (0.02755437216778796, 0.019049, 0.05489670854927665)); #180 = CARTESIAN_POINT('NONE', (0.027555827698383523, 0.019049, 0.054893825149871324)); #181 = CARTESIAN_POINT('NONE', (0.027678400837579598, 0.019049, 0.05467963903875645)); #182 = CARTESIAN_POINT('NONE', (0.02768001750186299, 0.019049, 0.05467681405574542)); @@ -210,7 +210,7 @@ DATA; #194 = CARTESIAN_POINT('NONE', (0.028473583951938546, 0.019049, 0.053693628473383485)); #195 = CARTESIAN_POINT('NONE', (0.028660294544066527, 0.019049, 0.05352587314256537)); #196 = CARTESIAN_POINT('NONE', (0.028662757141888564, 0.019049, 0.053523660552976325)); -#197 = CARTESIAN_POINT('NONE', (0.02875927031410607, 0.019049, 0.05344583333333333)); +#197 = CARTESIAN_POINT('NONE', (0.028759270314106068, 0.019049, 0.05344583333333333)); #198 = CARTESIAN_POINT('NONE', (0.028857730169404093, 0.019049, 0.053366436328673425)); #199 = CARTESIAN_POINT('NONE', (0.02886030174366479, 0.019049, 0.053364362637899225)); #200 = CARTESIAN_POINT('NONE', (0.02906263882725269, 0.019049, 0.05321824789528891)); @@ -372,7 +372,7 @@ DATA; #356 = CARTESIAN_POINT('NONE', (0.03153077965465271, 0.019049, 0.06190745191149483)); #357 = CARTESIAN_POINT('NONE', (0.03131095718312319, 0.019049, 0.06189215217292461)); #358 = CARTESIAN_POINT('NONE', (0.03130805785998649, 0.019049, 0.06189195037878721)); -#359 = CARTESIAN_POINT('NONE', (0.031085440375876138, 0.019049, 0.061865835463019006)); +#359 = CARTESIAN_POINT('NONE', (0.031085440375876135, 0.019049, 0.061865835463019006)); #360 = CARTESIAN_POINT('NONE', (0.03108250418824335, 0.019049, 0.06186549102334924)); #361 = CARTESIAN_POINT('NONE', (0.030857821004650707, 0.019049, 0.061828112720887236)); #362 = CARTESIAN_POINT('NONE', (0.030854857571712815, 0.019049, 0.06182761972407765)); @@ -432,7 +432,7 @@ DATA; #416 = CARTESIAN_POINT('NONE', (0.02699254808850517, 0.019049, 0.057369220345347284)); #417 = CARTESIAN_POINT('NONE', (0.026987565714448023, 0.019049, 0.05715285374235715)); #418 = CARTESIAN_POINT('NONE', (0.0269875, 0.019049, 0.05715)); -#419 = B_SPLINE_CURVE_WITH_KNOTS('NONE', 2, (#160, #161, #162, #163, #164, #165, #166, #167, #168, #169, #170, #171, #172, #173, #174, #175, #176, #177, #178, #179, #180, #181, #182, #183, #184, #185, #186, #187, #188, #189, #190, #191, #192, #193, #194, #195, #196, #197, #198, #199, #200, #201, #202, #203, #204, #205, #206, #207, #208, #209, #210, #211, #212, #213, #214, #215, #216, #217, #218, #219, #220, #221, #222, #223, #224, #225, #226, #227, #228, #229, #230, #231, #232, #233, #234, #235, #236, #237, #238, #239, #240, #241, #242, #243, #244, #245, #246, #247, #248, #249, #250, #251, #252, #253, #254, #255, #256, #257, #258, #259, #260, #261, #262, #263, #264, #265, #266, #267, #268, #269, #270, #271, #272, #273, #274, #275, #276, #277, #278, #279, #280, #281, #282, #283, #284, #285, #286, #287, #288, #289, #290, #291, #292, #293, #294, #295, #296, #297, #298, #299, #300, #301, #302, #303, #304, #305, #306, #307, #308, #309, #310, #311, #312, #313, #314, #315, #316, #317, #318, #319, #320, #321, #322, #323, #324, #325, #326, #327, #328, #329, #330, #331, #332, #333, #334, #335, #336, #337, #338, #339, #340, #341, #342, #343, #344, #345, #346, #347, #348, #349, #350, #351, #352, #353, #354, #355, #356, #357, #358, #359, #360, #361, #362, #363, #364, #365, #366, #367, #368, #369, #370, #371, #372, #373, #374, #375, #376, #377, #378, #379, #380, #381, #382, #383, #384, #385, #386, #387, #388, #389, #390, #391, #392, #393, #394, #395, #396, #397, #398, #399, #400, #401, #402, #403, #404, #405, #406, #407, #408, #409, #410, #411, #412, #413, #414, #415, #416, #417, #418), .UNSPECIFIED., .F., .F., (3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3), (0, 0.0038910505836575876, 0.007782101167315175, 0.011673151750972763, 0.01556420233463035, 0.019455252918287938, 0.023346303501945526, 0.027237354085603113, 0.0311284046692607, 0.03501945525291829, 0.038910505836575876, 0.042801556420233464, 0.04669260700389105, 0.05058365758754864, 0.054474708171206226, 0.058365758754863814, 0.0622568093385214, 0.06614785992217899, 0.07003891050583658, 0.07392996108949416, 0.07782101167315175, 0.08171206225680934, 0.08560311284046693, 0.08949416342412451, 0.0933852140077821, 0.09727626459143969, 0.10116731517509728, 0.10505836575875487, 0.10894941634241245, 0.11284046692607004, 0.11673151750972763, 0.12062256809338522, 0.1245136186770428, 0.12840466926070038, 0.13229571984435798, 0.13618677042801558, 0.14007782101167315, 0.14396887159533073, 0.14785992217898833, 0.15175097276264593, 0.1556420233463035, 0.15953307392996108, 0.16342412451361868, 0.16731517509727628, 0.17120622568093385, 0.17509727626459143, 0.17898832684824903, 0.18287937743190663, 0.1867704280155642, 0.19066147859922178, 0.19455252918287938, 0.19844357976653698, 0.20233463035019456, 0.20622568093385213, 0.21011673151750973, 0.21400778210116733, 0.2178988326848249, 0.22178988326848248, 0.22568093385214008, 0.22957198443579768, 0.23346303501945526, 0.23735408560311283, 0.24124513618677043, 0.24513618677042803, 0.2490272373540856, 0.2529182879377432, 0.25680933852140075, 0.2607003891050584, 0.26459143968871596, 0.26848249027237353, 0.27237354085603116, 0.27626459143968873, 0.2801556420233463, 0.2840466926070039, 0.28793774319066145, 0.2918287937743191, 0.29571984435797666, 0.29961089494163423, 0.30350194552529186, 0.30739299610894943, 0.311284046692607, 0.3151750972762646, 0.31906614785992216, 0.3229571984435798, 0.32684824902723736, 0.33073929961089493, 0.33463035019455256, 0.33852140077821014, 0.3424124513618677, 0.3463035019455253, 0.35019455252918286, 0.3540856031128405, 0.35797665369649806, 0.36186770428015563, 0.36575875486381326, 0.36964980544747084, 0.3735408560311284, 0.377431906614786, 0.38132295719844356, 0.3852140077821012, 0.38910505836575876, 0.39299610894941633, 0.39688715953307396, 0.40077821011673154, 0.4046692607003891, 0.4085603112840467, 0.41245136186770426, 0.4163424124513619, 0.42023346303501946, 0.42412451361867703, 0.42801556420233466, 0.43190661478599224, 0.4357976653696498, 0.4396887159533074, 0.44357976653696496, 0.4474708171206226, 0.45136186770428016, 0.45525291828793774, 0.45914396887159536, 0.46303501945525294, 0.4669260700389105, 0.4708171206225681, 0.47470817120622566, 0.4785992217898833, 0.48249027237354086, 0.48638132295719844, 0.49027237354085607, 0.49416342412451364, 0.4980544747081712, 0.5019455252918288, 0.5058365758754864, 0.5097276264591439, 0.5136186770428015, 0.5175097276264591, 0.5214007782101167, 0.5252918287937743, 0.5291828793774319, 0.5330739299610895, 0.5369649805447471, 0.5408560311284046, 0.5447470817120623, 0.5486381322957199, 0.5525291828793775, 0.556420233463035, 0.5603112840466926, 0.5642023346303502, 0.5680933852140078, 0.5719844357976653, 0.5758754863813229, 0.5797665369649805, 0.5836575875486381, 0.5875486381322957, 0.5914396887159533, 0.5953307392996109, 0.5992217898832685, 0.603112840466926, 0.6070038910505837, 0.6108949416342413, 0.6147859922178989, 0.6186770428015564, 0.622568093385214, 0.6264591439688716, 0.6303501945525292, 0.6342412451361867, 0.6381322957198443, 0.6420233463035019, 0.6459143968871595, 0.6498054474708171, 0.6536964980544747, 0.6575875486381323, 0.6614785992217899, 0.6653696498054474, 0.6692607003891051, 0.6731517509727627, 0.6770428015564203, 0.6809338521400778, 0.6848249027237354, 0.688715953307393, 0.6926070038910506, 0.6964980544747081, 0.7003891050583657, 0.7042801556420233, 0.7081712062256809, 0.7120622568093385, 0.7159533073929961, 0.7198443579766537, 0.7237354085603113, 0.7276264591439688, 0.7315175097276265, 0.7354085603112841, 0.7392996108949417, 0.7431906614785992, 0.7470817120622568, 0.7509727626459144, 0.754863813229572, 0.7587548638132295, 0.7626459143968871, 0.7665369649805447, 0.7704280155642023, 0.77431906614786, 0.7782101167315175, 0.7821011673151751, 0.7859922178988327, 0.7898832684824902, 0.7937743190661479, 0.7976653696498055, 0.8015564202334631, 0.8054474708171206, 0.8093385214007782, 0.8132295719844358, 0.8171206225680934, 0.8210116731517509, 0.8249027237354085, 0.8287937743190661, 0.8326848249027237, 0.8365758754863813, 0.8404669260700389, 0.8443579766536965, 0.8482490272373541, 0.8521400778210116, 0.8560311284046693, 0.8599221789883269, 0.8638132295719845, 0.867704280155642, 0.8715953307392996, 0.8754863813229572, 0.8793774319066148, 0.8832684824902723, 0.8871595330739299, 0.8910505836575875, 0.8949416342412452, 0.8988326848249028, 0.9027237354085603, 0.9066147859922179, 0.9105058365758755, 0.914396887159533, 0.9182879377431906, 0.9221789883268483, 0.9260700389105059, 0.9299610894941635, 0.933852140077821, 0.9377431906614786, 0.9416342412451362, 0.9455252918287937, 0.9494163424124513, 0.9533073929961089, 0.9571984435797666, 0.9610894941634242, 0.9649805447470817, 0.9688715953307393, 0.9727626459143969, 0.9766536964980544, 0.980544747081712, 0.9844357976653697, 0.9883268482490273, 0.9922178988326849, 0.9961089494163424, 1), .UNSPECIFIED.); +#419 = B_SPLINE_CURVE_WITH_KNOTS('NONE', 2, (#160, #161, #162, #163, #164, #165, #166, #167, #168, #169, #170, #171, #172, #173, #174, #175, #176, #177, #178, #179, #180, #181, #182, #183, #184, #185, #186, #187, #188, #189, #190, #191, #192, #193, #194, #195, #196, #197, #198, #199, #200, #201, #202, #203, #204, #205, #206, #207, #208, #209, #210, #211, #212, #213, #214, #215, #216, #217, #218, #219, #220, #221, #222, #223, #224, #225, #226, #227, #228, #229, #230, #231, #232, #233, #234, #235, #236, #237, #238, #239, #240, #241, #242, #243, #244, #245, #246, #247, #248, #249, #250, #251, #252, #253, #254, #255, #256, #257, #258, #259, #260, #261, #262, #263, #264, #265, #266, #267, #268, #269, #270, #271, #272, #273, #274, #275, #276, #277, #278, #279, #280, #281, #282, #283, #284, #285, #286, #287, #288, #289, #290, #291, #292, #293, #294, #295, #296, #297, #298, #299, #300, #301, #302, #303, #304, #305, #306, #307, #308, #309, #310, #311, #312, #313, #314, #315, #316, #317, #318, #319, #320, #321, #322, #323, #324, #325, #326, #327, #328, #329, #330, #331, #332, #333, #334, #335, #336, #337, #338, #339, #340, #341, #342, #343, #344, #345, #346, #347, #348, #349, #350, #351, #352, #353, #354, #355, #356, #357, #358, #359, #360, #361, #362, #363, #364, #365, #366, #367, #368, #369, #370, #371, #372, #373, #374, #375, #376, #377, #378, #379, #380, #381, #382, #383, #384, #385, #386, #387, #388, #389, #390, #391, #392, #393, #394, #395, #396, #397, #398, #399, #400, #401, #402, #403, #404, #405, #406, #407, #408, #409, #410, #411, #412, #413, #414, #415, #416, #417, #418), .UNSPECIFIED., .F., .F., (3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3), (-1, -0.9961089494163424, -0.9922178988326849, -0.9883268482490273, -0.9844357976653697, -0.980544747081712, -0.9766536964980544, -0.9727626459143969, -0.9688715953307393, -0.9649805447470817, -0.9610894941634242, -0.9571984435797666, -0.9533073929961089, -0.9494163424124513, -0.9455252918287937, -0.9416342412451362, -0.9377431906614786, -0.933852140077821, -0.9299610894941635, -0.9260700389105059, -0.9221789883268483, -0.9182879377431906, -0.914396887159533, -0.9105058365758755, -0.9066147859922179, -0.9027237354085603, -0.8988326848249028, -0.8949416342412452, -0.8910505836575875, -0.8871595330739299, -0.8832684824902723, -0.8793774319066148, -0.8754863813229572, -0.8715953307392996, -0.867704280155642, -0.8638132295719845, -0.8599221789883269, -0.8560311284046693, -0.8521400778210116, -0.8482490272373541, -0.8443579766536965, -0.8404669260700389, -0.8365758754863813, -0.8326848249027237, -0.8287937743190661, -0.8249027237354085, -0.8210116731517509, -0.8171206225680934, -0.8132295719844358, -0.8093385214007782, -0.8054474708171206, -0.8015564202334631, -0.7976653696498055, -0.7937743190661479, -0.7898832684824902, -0.7859922178988327, -0.7821011673151751, -0.7782101167315175, -0.77431906614786, -0.7704280155642023, -0.7665369649805447, -0.7626459143968871, -0.7587548638132295, -0.754863813229572, -0.7509727626459144, -0.7470817120622568, -0.7431906614785992, -0.7392996108949417, -0.7354085603112841, -0.7315175097276265, -0.7276264591439688, -0.7237354085603113, -0.7198443579766537, -0.7159533073929961, -0.7120622568093385, -0.7081712062256809, -0.7042801556420233, -0.7003891050583657, -0.6964980544747081, -0.6926070038910506, -0.688715953307393, -0.6848249027237354, -0.6809338521400778, -0.6770428015564203, -0.6731517509727627, -0.6692607003891051, -0.6653696498054474, -0.6614785992217899, -0.6575875486381323, -0.6536964980544747, -0.6498054474708171, -0.6459143968871595, -0.6420233463035019, -0.6381322957198443, -0.6342412451361867, -0.6303501945525292, -0.6264591439688716, -0.622568093385214, -0.6186770428015564, -0.6147859922178989, -0.6108949416342413, -0.6070038910505837, -0.603112840466926, -0.5992217898832685, -0.5953307392996109, -0.5914396887159533, -0.5875486381322957, -0.5836575875486381, -0.5797665369649805, -0.5758754863813229, -0.5719844357976653, -0.5680933852140078, -0.5642023346303502, -0.5603112840466926, -0.556420233463035, -0.5525291828793775, -0.5486381322957199, -0.5447470817120623, -0.5408560311284046, -0.5369649805447471, -0.5330739299610895, -0.5291828793774319, -0.5252918287937743, -0.5214007782101167, -0.5175097276264591, -0.5136186770428015, -0.5097276264591439, -0.5058365758754864, -0.5019455252918288, -0.4980544747081712, -0.49416342412451364, -0.49027237354085607, -0.48638132295719844, -0.48249027237354086, -0.4785992217898833, -0.47470817120622566, -0.4708171206225681, -0.4669260700389105, -0.46303501945525294, -0.45914396887159536, -0.45525291828793774, -0.45136186770428016, -0.4474708171206226, -0.44357976653696496, -0.4396887159533074, -0.4357976653696498, -0.43190661478599224, -0.42801556420233466, -0.42412451361867703, -0.42023346303501946, -0.4163424124513619, -0.41245136186770426, -0.4085603112840467, -0.4046692607003891, -0.40077821011673154, -0.39688715953307396, -0.39299610894941633, -0.38910505836575876, -0.3852140077821012, -0.38132295719844356, -0.377431906614786, -0.3735408560311284, -0.36964980544747084, -0.36575875486381326, -0.36186770428015563, -0.35797665369649806, -0.3540856031128405, -0.35019455252918286, -0.3463035019455253, -0.3424124513618677, -0.33852140077821014, -0.33463035019455256, -0.33073929961089493, -0.32684824902723736, -0.3229571984435798, -0.31906614785992216, -0.3151750972762646, -0.311284046692607, -0.30739299610894943, -0.30350194552529186, -0.29961089494163423, -0.29571984435797666, -0.2918287937743191, -0.28793774319066145, -0.2840466926070039, -0.2801556420233463, -0.27626459143968873, -0.27237354085603116, -0.26848249027237353, -0.26459143968871596, -0.2607003891050584, -0.25680933852140075, -0.2529182879377432, -0.2490272373540856, -0.24513618677042803, -0.24124513618677043, -0.23735408560311283, -0.23346303501945526, -0.22957198443579768, -0.22568093385214008, -0.22178988326848248, -0.2178988326848249, -0.21400778210116733, -0.21011673151750973, -0.20622568093385213, -0.20233463035019456, -0.19844357976653698, -0.19455252918287938, -0.19066147859922178, -0.1867704280155642, -0.18287937743190663, -0.17898832684824903, -0.17509727626459143, -0.17120622568093385, -0.16731517509727628, -0.16342412451361868, -0.15953307392996108, -0.1556420233463035, -0.15175097276264593, -0.14785992217898833, -0.14396887159533073, -0.14007782101167315, -0.13618677042801558, -0.13229571984435798, -0.12840466926070038, -0.1245136186770428, -0.12062256809338522, -0.11673151750972763, -0.11284046692607004, -0.10894941634241245, -0.10505836575875487, -0.10116731517509728, -0.09727626459143969, -0.0933852140077821, -0.08949416342412451, -0.08560311284046693, -0.08171206225680934, -0.07782101167315175, -0.07392996108949416, -0.07003891050583658, -0.06614785992217899, -0.0622568093385214, -0.058365758754863814, -0.054474708171206226, -0.05058365758754864, -0.04669260700389105, -0.042801556420233464, -0.038910505836575876, -0.03501945525291829, -0.0311284046692607, -0.027237354085603113, -0.023346303501945526, -0.019455252918287938, -0.01556420233463035, -0.011673151750972763, -0.007782101167315175, -0.0038910505836575876, -0), .UNSPECIFIED.); #420 = DIRECTION('NONE', (0, -1, 0)); #421 = VECTOR('NONE', #420, 1); #422 = CARTESIAN_POINT('NONE', (0.0269875, 0.019051000000000002, 0.05715)); @@ -461,7 +461,7 @@ DATA; #445 = CARTESIAN_POINT('NONE', (-0.03615526308498463, 0.019049, 0.055340286375673856)); #446 = CARTESIAN_POINT('NONE', (-0.03605727643274981, 0.019049, 0.05511825220075177)); #447 = CARTESIAN_POINT('NONE', (-0.036055984049100695, 0.019049, 0.05511532370660824)); -#448 = CARTESIAN_POINT('NONE', (-0.03594562783221205, 0.019049, 0.054896708549276654)); +#448 = CARTESIAN_POINT('NONE', (-0.03594562783221205, 0.019049, 0.05489670854927665)); #449 = CARTESIAN_POINT('NONE', (-0.035944172301616485, 0.019049, 0.054893825149871324)); #450 = CARTESIAN_POINT('NONE', (-0.035821599162420406, 0.019049, 0.05467963903875645)); #451 = CARTESIAN_POINT('NONE', (-0.03581998249813702, 0.019049, 0.05467681405574542)); @@ -701,7 +701,7 @@ DATA; #685 = CARTESIAN_POINT('NONE', (-0.036507451911494834, 0.019049, 0.057369220345347284)); #686 = CARTESIAN_POINT('NONE', (-0.03651243428555198, 0.019049, 0.05715285374235715)); #687 = CARTESIAN_POINT('NONE', (-0.0365125, 0.019049, 0.05715)); -#688 = B_SPLINE_CURVE_WITH_KNOTS('NONE', 2, (#429, #430, #431, #432, #433, #434, #435, #436, #437, #438, #439, #440, #441, #442, #443, #444, #445, #446, #447, #448, #449, #450, #451, #452, #453, #454, #455, #456, #457, #458, #459, #460, #461, #462, #463, #464, #465, #466, #467, #468, #469, #470, #471, #472, #473, #474, #475, #476, #477, #478, #479, #480, #481, #482, #483, #484, #485, #486, #487, #488, #489, #490, #491, #492, #493, #494, #495, #496, #497, #498, #499, #500, #501, #502, #503, #504, #505, #506, #507, #508, #509, #510, #511, #512, #513, #514, #515, #516, #517, #518, #519, #520, #521, #522, #523, #524, #525, #526, #527, #528, #529, #530, #531, #532, #533, #534, #535, #536, #537, #538, #539, #540, #541, #542, #543, #544, #545, #546, #547, #548, #549, #550, #551, #552, #553, #554, #555, #556, #557, #558, #559, #560, #561, #562, #563, #564, #565, #566, #567, #568, #569, #570, #571, #572, #573, #574, #575, #576, #577, #578, #579, #580, #581, #582, #583, #584, #585, #586, #587, #588, #589, #590, #591, #592, #593, #594, #595, #596, #597, #598, #599, #600, #601, #602, #603, #604, #605, #606, #607, #608, #609, #610, #611, #612, #613, #614, #615, #616, #617, #618, #619, #620, #621, #622, #623, #624, #625, #626, #627, #628, #629, #630, #631, #632, #633, #634, #635, #636, #637, #638, #639, #640, #641, #642, #643, #644, #645, #646, #647, #648, #649, #650, #651, #652, #653, #654, #655, #656, #657, #658, #659, #660, #661, #662, #663, #664, #665, #666, #667, #668, #669, #670, #671, #672, #673, #674, #675, #676, #677, #678, #679, #680, #681, #682, #683, #684, #685, #686, #687), .UNSPECIFIED., .F., .F., (3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3), (0, 0.0038910505836575876, 0.007782101167315175, 0.011673151750972763, 0.01556420233463035, 0.019455252918287938, 0.023346303501945526, 0.027237354085603113, 0.0311284046692607, 0.03501945525291829, 0.038910505836575876, 0.042801556420233464, 0.04669260700389105, 0.05058365758754864, 0.054474708171206226, 0.058365758754863814, 0.0622568093385214, 0.06614785992217899, 0.07003891050583658, 0.07392996108949416, 0.07782101167315175, 0.08171206225680934, 0.08560311284046693, 0.08949416342412451, 0.0933852140077821, 0.09727626459143969, 0.10116731517509728, 0.10505836575875487, 0.10894941634241245, 0.11284046692607004, 0.11673151750972763, 0.12062256809338522, 0.1245136186770428, 0.12840466926070038, 0.13229571984435798, 0.13618677042801558, 0.14007782101167315, 0.14396887159533073, 0.14785992217898833, 0.15175097276264593, 0.1556420233463035, 0.15953307392996108, 0.16342412451361868, 0.16731517509727628, 0.17120622568093385, 0.17509727626459143, 0.17898832684824903, 0.18287937743190663, 0.1867704280155642, 0.19066147859922178, 0.19455252918287938, 0.19844357976653698, 0.20233463035019456, 0.20622568093385213, 0.21011673151750973, 0.21400778210116733, 0.2178988326848249, 0.22178988326848248, 0.22568093385214008, 0.22957198443579768, 0.23346303501945526, 0.23735408560311283, 0.24124513618677043, 0.24513618677042803, 0.2490272373540856, 0.2529182879377432, 0.25680933852140075, 0.2607003891050584, 0.26459143968871596, 0.26848249027237353, 0.27237354085603116, 0.27626459143968873, 0.2801556420233463, 0.2840466926070039, 0.28793774319066145, 0.2918287937743191, 0.29571984435797666, 0.29961089494163423, 0.30350194552529186, 0.30739299610894943, 0.311284046692607, 0.3151750972762646, 0.31906614785992216, 0.3229571984435798, 0.32684824902723736, 0.33073929961089493, 0.33463035019455256, 0.33852140077821014, 0.3424124513618677, 0.3463035019455253, 0.35019455252918286, 0.3540856031128405, 0.35797665369649806, 0.36186770428015563, 0.36575875486381326, 0.36964980544747084, 0.3735408560311284, 0.377431906614786, 0.38132295719844356, 0.3852140077821012, 0.38910505836575876, 0.39299610894941633, 0.39688715953307396, 0.40077821011673154, 0.4046692607003891, 0.4085603112840467, 0.41245136186770426, 0.4163424124513619, 0.42023346303501946, 0.42412451361867703, 0.42801556420233466, 0.43190661478599224, 0.4357976653696498, 0.4396887159533074, 0.44357976653696496, 0.4474708171206226, 0.45136186770428016, 0.45525291828793774, 0.45914396887159536, 0.46303501945525294, 0.4669260700389105, 0.4708171206225681, 0.47470817120622566, 0.4785992217898833, 0.48249027237354086, 0.48638132295719844, 0.49027237354085607, 0.49416342412451364, 0.4980544747081712, 0.5019455252918288, 0.5058365758754864, 0.5097276264591439, 0.5136186770428015, 0.5175097276264591, 0.5214007782101167, 0.5252918287937743, 0.5291828793774319, 0.5330739299610895, 0.5369649805447471, 0.5408560311284046, 0.5447470817120623, 0.5486381322957199, 0.5525291828793775, 0.556420233463035, 0.5603112840466926, 0.5642023346303502, 0.5680933852140078, 0.5719844357976653, 0.5758754863813229, 0.5797665369649805, 0.5836575875486381, 0.5875486381322957, 0.5914396887159533, 0.5953307392996109, 0.5992217898832685, 0.603112840466926, 0.6070038910505837, 0.6108949416342413, 0.6147859922178989, 0.6186770428015564, 0.622568093385214, 0.6264591439688716, 0.6303501945525292, 0.6342412451361867, 0.6381322957198443, 0.6420233463035019, 0.6459143968871595, 0.6498054474708171, 0.6536964980544747, 0.6575875486381323, 0.6614785992217899, 0.6653696498054474, 0.6692607003891051, 0.6731517509727627, 0.6770428015564203, 0.6809338521400778, 0.6848249027237354, 0.688715953307393, 0.6926070038910506, 0.6964980544747081, 0.7003891050583657, 0.7042801556420233, 0.7081712062256809, 0.7120622568093385, 0.7159533073929961, 0.7198443579766537, 0.7237354085603113, 0.7276264591439688, 0.7315175097276265, 0.7354085603112841, 0.7392996108949417, 0.7431906614785992, 0.7470817120622568, 0.7509727626459144, 0.754863813229572, 0.7587548638132295, 0.7626459143968871, 0.7665369649805447, 0.7704280155642023, 0.77431906614786, 0.7782101167315175, 0.7821011673151751, 0.7859922178988327, 0.7898832684824902, 0.7937743190661479, 0.7976653696498055, 0.8015564202334631, 0.8054474708171206, 0.8093385214007782, 0.8132295719844358, 0.8171206225680934, 0.8210116731517509, 0.8249027237354085, 0.8287937743190661, 0.8326848249027237, 0.8365758754863813, 0.8404669260700389, 0.8443579766536965, 0.8482490272373541, 0.8521400778210116, 0.8560311284046693, 0.8599221789883269, 0.8638132295719845, 0.867704280155642, 0.8715953307392996, 0.8754863813229572, 0.8793774319066148, 0.8832684824902723, 0.8871595330739299, 0.8910505836575875, 0.8949416342412452, 0.8988326848249028, 0.9027237354085603, 0.9066147859922179, 0.9105058365758755, 0.914396887159533, 0.9182879377431906, 0.9221789883268483, 0.9260700389105059, 0.9299610894941635, 0.933852140077821, 0.9377431906614786, 0.9416342412451362, 0.9455252918287937, 0.9494163424124513, 0.9533073929961089, 0.9571984435797666, 0.9610894941634242, 0.9649805447470817, 0.9688715953307393, 0.9727626459143969, 0.9766536964980544, 0.980544747081712, 0.9844357976653697, 0.9883268482490273, 0.9922178988326849, 0.9961089494163424, 1), .UNSPECIFIED.); +#688 = B_SPLINE_CURVE_WITH_KNOTS('NONE', 2, (#429, #430, #431, #432, #433, #434, #435, #436, #437, #438, #439, #440, #441, #442, #443, #444, #445, #446, #447, #448, #449, #450, #451, #452, #453, #454, #455, #456, #457, #458, #459, #460, #461, #462, #463, #464, #465, #466, #467, #468, #469, #470, #471, #472, #473, #474, #475, #476, #477, #478, #479, #480, #481, #482, #483, #484, #485, #486, #487, #488, #489, #490, #491, #492, #493, #494, #495, #496, #497, #498, #499, #500, #501, #502, #503, #504, #505, #506, #507, #508, #509, #510, #511, #512, #513, #514, #515, #516, #517, #518, #519, #520, #521, #522, #523, #524, #525, #526, #527, #528, #529, #530, #531, #532, #533, #534, #535, #536, #537, #538, #539, #540, #541, #542, #543, #544, #545, #546, #547, #548, #549, #550, #551, #552, #553, #554, #555, #556, #557, #558, #559, #560, #561, #562, #563, #564, #565, #566, #567, #568, #569, #570, #571, #572, #573, #574, #575, #576, #577, #578, #579, #580, #581, #582, #583, #584, #585, #586, #587, #588, #589, #590, #591, #592, #593, #594, #595, #596, #597, #598, #599, #600, #601, #602, #603, #604, #605, #606, #607, #608, #609, #610, #611, #612, #613, #614, #615, #616, #617, #618, #619, #620, #621, #622, #623, #624, #625, #626, #627, #628, #629, #630, #631, #632, #633, #634, #635, #636, #637, #638, #639, #640, #641, #642, #643, #644, #645, #646, #647, #648, #649, #650, #651, #652, #653, #654, #655, #656, #657, #658, #659, #660, #661, #662, #663, #664, #665, #666, #667, #668, #669, #670, #671, #672, #673, #674, #675, #676, #677, #678, #679, #680, #681, #682, #683, #684, #685, #686, #687), .UNSPECIFIED., .F., .F., (3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3), (-1, -0.9961089494163424, -0.9922178988326849, -0.9883268482490273, -0.9844357976653697, -0.980544747081712, -0.9766536964980544, -0.9727626459143969, -0.9688715953307393, -0.9649805447470817, -0.9610894941634242, -0.9571984435797666, -0.9533073929961089, -0.9494163424124513, -0.9455252918287937, -0.9416342412451362, -0.9377431906614786, -0.933852140077821, -0.9299610894941635, -0.9260700389105059, -0.9221789883268483, -0.9182879377431906, -0.914396887159533, -0.9105058365758755, -0.9066147859922179, -0.9027237354085603, -0.8988326848249028, -0.8949416342412452, -0.8910505836575875, -0.8871595330739299, -0.8832684824902723, -0.8793774319066148, -0.8754863813229572, -0.8715953307392996, -0.867704280155642, -0.8638132295719845, -0.8599221789883269, -0.8560311284046693, -0.8521400778210116, -0.8482490272373541, -0.8443579766536965, -0.8404669260700389, -0.8365758754863813, -0.8326848249027237, -0.8287937743190661, -0.8249027237354085, -0.8210116731517509, -0.8171206225680934, -0.8132295719844358, -0.8093385214007782, -0.8054474708171206, -0.8015564202334631, -0.7976653696498055, -0.7937743190661479, -0.7898832684824902, -0.7859922178988327, -0.7821011673151751, -0.7782101167315175, -0.77431906614786, -0.7704280155642023, -0.7665369649805447, -0.7626459143968871, -0.7587548638132295, -0.754863813229572, -0.7509727626459144, -0.7470817120622568, -0.7431906614785992, -0.7392996108949417, -0.7354085603112841, -0.7315175097276265, -0.7276264591439688, -0.7237354085603113, -0.7198443579766537, -0.7159533073929961, -0.7120622568093385, -0.7081712062256809, -0.7042801556420233, -0.7003891050583657, -0.6964980544747081, -0.6926070038910506, -0.688715953307393, -0.6848249027237354, -0.6809338521400778, -0.6770428015564203, -0.6731517509727627, -0.6692607003891051, -0.6653696498054474, -0.6614785992217899, -0.6575875486381323, -0.6536964980544747, -0.6498054474708171, -0.6459143968871595, -0.6420233463035019, -0.6381322957198443, -0.6342412451361867, -0.6303501945525292, -0.6264591439688716, -0.622568093385214, -0.6186770428015564, -0.6147859922178989, -0.6108949416342413, -0.6070038910505837, -0.603112840466926, -0.5992217898832685, -0.5953307392996109, -0.5914396887159533, -0.5875486381322957, -0.5836575875486381, -0.5797665369649805, -0.5758754863813229, -0.5719844357976653, -0.5680933852140078, -0.5642023346303502, -0.5603112840466926, -0.556420233463035, -0.5525291828793775, -0.5486381322957199, -0.5447470817120623, -0.5408560311284046, -0.5369649805447471, -0.5330739299610895, -0.5291828793774319, -0.5252918287937743, -0.5214007782101167, -0.5175097276264591, -0.5136186770428015, -0.5097276264591439, -0.5058365758754864, -0.5019455252918288, -0.4980544747081712, -0.49416342412451364, -0.49027237354085607, -0.48638132295719844, -0.48249027237354086, -0.4785992217898833, -0.47470817120622566, -0.4708171206225681, -0.4669260700389105, -0.46303501945525294, -0.45914396887159536, -0.45525291828793774, -0.45136186770428016, -0.4474708171206226, -0.44357976653696496, -0.4396887159533074, -0.4357976653696498, -0.43190661478599224, -0.42801556420233466, -0.42412451361867703, -0.42023346303501946, -0.4163424124513619, -0.41245136186770426, -0.4085603112840467, -0.4046692607003891, -0.40077821011673154, -0.39688715953307396, -0.39299610894941633, -0.38910505836575876, -0.3852140077821012, -0.38132295719844356, -0.377431906614786, -0.3735408560311284, -0.36964980544747084, -0.36575875486381326, -0.36186770428015563, -0.35797665369649806, -0.3540856031128405, -0.35019455252918286, -0.3463035019455253, -0.3424124513618677, -0.33852140077821014, -0.33463035019455256, -0.33073929961089493, -0.32684824902723736, -0.3229571984435798, -0.31906614785992216, -0.3151750972762646, -0.311284046692607, -0.30739299610894943, -0.30350194552529186, -0.29961089494163423, -0.29571984435797666, -0.2918287937743191, -0.28793774319066145, -0.2840466926070039, -0.2801556420233463, -0.27626459143968873, -0.27237354085603116, -0.26848249027237353, -0.26459143968871596, -0.2607003891050584, -0.25680933852140075, -0.2529182879377432, -0.2490272373540856, -0.24513618677042803, -0.24124513618677043, -0.23735408560311283, -0.23346303501945526, -0.22957198443579768, -0.22568093385214008, -0.22178988326848248, -0.2178988326848249, -0.21400778210116733, -0.21011673151750973, -0.20622568093385213, -0.20233463035019456, -0.19844357976653698, -0.19455252918287938, -0.19066147859922178, -0.1867704280155642, -0.18287937743190663, -0.17898832684824903, -0.17509727626459143, -0.17120622568093385, -0.16731517509727628, -0.16342412451361868, -0.15953307392996108, -0.1556420233463035, -0.15175097276264593, -0.14785992217898833, -0.14396887159533073, -0.14007782101167315, -0.13618677042801558, -0.13229571984435798, -0.12840466926070038, -0.1245136186770428, -0.12062256809338522, -0.11673151750972763, -0.11284046692607004, -0.10894941634241245, -0.10505836575875487, -0.10116731517509728, -0.09727626459143969, -0.0933852140077821, -0.08949416342412451, -0.08560311284046693, -0.08171206225680934, -0.07782101167315175, -0.07392996108949416, -0.07003891050583658, -0.06614785992217899, -0.0622568093385214, -0.058365758754863814, -0.054474708171206226, -0.05058365758754864, -0.04669260700389105, -0.042801556420233464, -0.038910505836575876, -0.03501945525291829, -0.0311284046692607, -0.027237354085603113, -0.023346303501945526, -0.019455252918287938, -0.01556420233463035, -0.011673151750972763, -0.007782101167315175, -0.0038910505836575876, -0), .UNSPECIFIED.); #689 = DIRECTION('NONE', (0, -1, 0)); #690 = VECTOR('NONE', #689, 1); #691 = CARTESIAN_POINT('NONE', (-0.0365125, 0.019051000000000002, 0.05715)); @@ -1072,7 +1072,7 @@ DATA; #1056 = CARTESIAN_POINT('NONE', (-0.029065307528881673, 0.019049, -0.06108367926825771)); #1057 = CARTESIAN_POINT('NONE', (-0.02886297044529378, 0.019049, -0.0609375645256474)); #1058 = CARTESIAN_POINT('NONE', (-0.02886030174366479, 0.019049, -0.06093563736210077)); -#1059 = CARTESIAN_POINT('NONE', (-0.028759270314106074, 0.019049, -0.06085416666666666)); +#1059 = CARTESIAN_POINT('NONE', (-0.028759270314106078, 0.019049, -0.06085416666666666)); #1060 = CARTESIAN_POINT('NONE', (-0.028665328716149255, 0.019049, -0.06077841313779784)); #1061 = CARTESIAN_POINT('NONE', (-0.02866275714188856, 0.019049, -0.06077633944702365)); #1062 = CARTESIAN_POINT('NONE', (-0.028476046549760586, 0.019049, -0.06060858411620556)); @@ -1146,7 +1146,7 @@ DATA; #1130 = CARTESIAN_POINT('NONE', (-0.028473583951938546, 0.019049, -0.053693628473383485)); #1131 = CARTESIAN_POINT('NONE', (-0.028660294544066527, 0.019049, -0.05352587314256537)); #1132 = CARTESIAN_POINT('NONE', (-0.028662757141888564, 0.019049, -0.053523660552976325)); -#1133 = CARTESIAN_POINT('NONE', (-0.02875927031410607, 0.019049, -0.05344583333333333)); +#1133 = CARTESIAN_POINT('NONE', (-0.028759270314106068, 0.019049, -0.05344583333333333)); #1134 = CARTESIAN_POINT('NONE', (-0.028857730169404093, 0.019049, -0.053366436328673425)); #1135 = CARTESIAN_POINT('NONE', (-0.02886030174366479, 0.019049, -0.053364362637899225)); #1136 = CARTESIAN_POINT('NONE', (-0.02906263882725269, 0.019049, -0.05321824789528891)); @@ -1239,7 +1239,7 @@ DATA; #1223 = CARTESIAN_POINT('NONE', (-0.036507451911494834, 0.019049, -0.0569307796546527)); #1224 = CARTESIAN_POINT('NONE', (-0.03651243428555198, 0.019049, -0.05714714625764285)); #1225 = CARTESIAN_POINT('NONE', (-0.0365125, 0.019049, -0.05715)); -#1226 = B_SPLINE_CURVE_WITH_KNOTS('NONE', 2, (#967, #968, #969, #970, #971, #972, #973, #974, #975, #976, #977, #978, #979, #980, #981, #982, #983, #984, #985, #986, #987, #988, #989, #990, #991, #992, #993, #994, #995, #996, #997, #998, #999, #1000, #1001, #1002, #1003, #1004, #1005, #1006, #1007, #1008, #1009, #1010, #1011, #1012, #1013, #1014, #1015, #1016, #1017, #1018, #1019, #1020, #1021, #1022, #1023, #1024, #1025, #1026, #1027, #1028, #1029, #1030, #1031, #1032, #1033, #1034, #1035, #1036, #1037, #1038, #1039, #1040, #1041, #1042, #1043, #1044, #1045, #1046, #1047, #1048, #1049, #1050, #1051, #1052, #1053, #1054, #1055, #1056, #1057, #1058, #1059, #1060, #1061, #1062, #1063, #1064, #1065, #1066, #1067, #1068, #1069, #1070, #1071, #1072, #1073, #1074, #1075, #1076, #1077, #1078, #1079, #1080, #1081, #1082, #1083, #1084, #1085, #1086, #1087, #1088, #1089, #1090, #1091, #1092, #1093, #1094, #1095, #1096, #1097, #1098, #1099, #1100, #1101, #1102, #1103, #1104, #1105, #1106, #1107, #1108, #1109, #1110, #1111, #1112, #1113, #1114, #1115, #1116, #1117, #1118, #1119, #1120, #1121, #1122, #1123, #1124, #1125, #1126, #1127, #1128, #1129, #1130, #1131, #1132, #1133, #1134, #1135, #1136, #1137, #1138, #1139, #1140, #1141, #1142, #1143, #1144, #1145, #1146, #1147, #1148, #1149, #1150, #1151, #1152, #1153, #1154, #1155, #1156, #1157, #1158, #1159, #1160, #1161, #1162, #1163, #1164, #1165, #1166, #1167, #1168, #1169, #1170, #1171, #1172, #1173, #1174, #1175, #1176, #1177, #1178, #1179, #1180, #1181, #1182, #1183, #1184, #1185, #1186, #1187, #1188, #1189, #1190, #1191, #1192, #1193, #1194, #1195, #1196, #1197, #1198, #1199, #1200, #1201, #1202, #1203, #1204, #1205, #1206, #1207, #1208, #1209, #1210, #1211, #1212, #1213, #1214, #1215, #1216, #1217, #1218, #1219, #1220, #1221, #1222, #1223, #1224, #1225), .UNSPECIFIED., .F., .F., (3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3), (0, 0.0038910505836575876, 0.007782101167315175, 0.011673151750972763, 0.01556420233463035, 0.019455252918287938, 0.023346303501945526, 0.027237354085603113, 0.0311284046692607, 0.03501945525291829, 0.038910505836575876, 0.042801556420233464, 0.04669260700389105, 0.05058365758754864, 0.054474708171206226, 0.058365758754863814, 0.0622568093385214, 0.06614785992217899, 0.07003891050583658, 0.07392996108949416, 0.07782101167315175, 0.08171206225680934, 0.08560311284046693, 0.08949416342412451, 0.0933852140077821, 0.09727626459143969, 0.10116731517509728, 0.10505836575875487, 0.10894941634241245, 0.11284046692607004, 0.11673151750972763, 0.12062256809338522, 0.1245136186770428, 0.12840466926070038, 0.13229571984435798, 0.13618677042801558, 0.14007782101167315, 0.14396887159533073, 0.14785992217898833, 0.15175097276264593, 0.1556420233463035, 0.15953307392996108, 0.16342412451361868, 0.16731517509727628, 0.17120622568093385, 0.17509727626459143, 0.17898832684824903, 0.18287937743190663, 0.1867704280155642, 0.19066147859922178, 0.19455252918287938, 0.19844357976653698, 0.20233463035019456, 0.20622568093385213, 0.21011673151750973, 0.21400778210116733, 0.2178988326848249, 0.22178988326848248, 0.22568093385214008, 0.22957198443579768, 0.23346303501945526, 0.23735408560311283, 0.24124513618677043, 0.24513618677042803, 0.2490272373540856, 0.2529182879377432, 0.25680933852140075, 0.2607003891050584, 0.26459143968871596, 0.26848249027237353, 0.27237354085603116, 0.27626459143968873, 0.2801556420233463, 0.2840466926070039, 0.28793774319066145, 0.2918287937743191, 0.29571984435797666, 0.29961089494163423, 0.30350194552529186, 0.30739299610894943, 0.311284046692607, 0.3151750972762646, 0.31906614785992216, 0.3229571984435798, 0.32684824902723736, 0.33073929961089493, 0.33463035019455256, 0.33852140077821014, 0.3424124513618677, 0.3463035019455253, 0.35019455252918286, 0.3540856031128405, 0.35797665369649806, 0.36186770428015563, 0.36575875486381326, 0.36964980544747084, 0.3735408560311284, 0.377431906614786, 0.38132295719844356, 0.3852140077821012, 0.38910505836575876, 0.39299610894941633, 0.39688715953307396, 0.40077821011673154, 0.4046692607003891, 0.4085603112840467, 0.41245136186770426, 0.4163424124513619, 0.42023346303501946, 0.42412451361867703, 0.42801556420233466, 0.43190661478599224, 0.4357976653696498, 0.4396887159533074, 0.44357976653696496, 0.4474708171206226, 0.45136186770428016, 0.45525291828793774, 0.45914396887159536, 0.46303501945525294, 0.4669260700389105, 0.4708171206225681, 0.47470817120622566, 0.4785992217898833, 0.48249027237354086, 0.48638132295719844, 0.49027237354085607, 0.49416342412451364, 0.4980544747081712, 0.5019455252918288, 0.5058365758754864, 0.5097276264591439, 0.5136186770428015, 0.5175097276264591, 0.5214007782101167, 0.5252918287937743, 0.5291828793774319, 0.5330739299610895, 0.5369649805447471, 0.5408560311284046, 0.5447470817120623, 0.5486381322957199, 0.5525291828793775, 0.556420233463035, 0.5603112840466926, 0.5642023346303502, 0.5680933852140078, 0.5719844357976653, 0.5758754863813229, 0.5797665369649805, 0.5836575875486381, 0.5875486381322957, 0.5914396887159533, 0.5953307392996109, 0.5992217898832685, 0.603112840466926, 0.6070038910505837, 0.6108949416342413, 0.6147859922178989, 0.6186770428015564, 0.622568093385214, 0.6264591439688716, 0.6303501945525292, 0.6342412451361867, 0.6381322957198443, 0.6420233463035019, 0.6459143968871595, 0.6498054474708171, 0.6536964980544747, 0.6575875486381323, 0.6614785992217899, 0.6653696498054474, 0.6692607003891051, 0.6731517509727627, 0.6770428015564203, 0.6809338521400778, 0.6848249027237354, 0.688715953307393, 0.6926070038910506, 0.6964980544747081, 0.7003891050583657, 0.7042801556420233, 0.7081712062256809, 0.7120622568093385, 0.7159533073929961, 0.7198443579766537, 0.7237354085603113, 0.7276264591439688, 0.7315175097276265, 0.7354085603112841, 0.7392996108949417, 0.7431906614785992, 0.7470817120622568, 0.7509727626459144, 0.754863813229572, 0.7587548638132295, 0.7626459143968871, 0.7665369649805447, 0.7704280155642023, 0.77431906614786, 0.7782101167315175, 0.7821011673151751, 0.7859922178988327, 0.7898832684824902, 0.7937743190661479, 0.7976653696498055, 0.8015564202334631, 0.8054474708171206, 0.8093385214007782, 0.8132295719844358, 0.8171206225680934, 0.8210116731517509, 0.8249027237354085, 0.8287937743190661, 0.8326848249027237, 0.8365758754863813, 0.8404669260700389, 0.8443579766536965, 0.8482490272373541, 0.8521400778210116, 0.8560311284046693, 0.8599221789883269, 0.8638132295719845, 0.867704280155642, 0.8715953307392996, 0.8754863813229572, 0.8793774319066148, 0.8832684824902723, 0.8871595330739299, 0.8910505836575875, 0.8949416342412452, 0.8988326848249028, 0.9027237354085603, 0.9066147859922179, 0.9105058365758755, 0.914396887159533, 0.9182879377431906, 0.9221789883268483, 0.9260700389105059, 0.9299610894941635, 0.933852140077821, 0.9377431906614786, 0.9416342412451362, 0.9455252918287937, 0.9494163424124513, 0.9533073929961089, 0.9571984435797666, 0.9610894941634242, 0.9649805447470817, 0.9688715953307393, 0.9727626459143969, 0.9766536964980544, 0.980544747081712, 0.9844357976653697, 0.9883268482490273, 0.9922178988326849, 0.9961089494163424, 1), .UNSPECIFIED.); +#1226 = B_SPLINE_CURVE_WITH_KNOTS('NONE', 2, (#967, #968, #969, #970, #971, #972, #973, #974, #975, #976, #977, #978, #979, #980, #981, #982, #983, #984, #985, #986, #987, #988, #989, #990, #991, #992, #993, #994, #995, #996, #997, #998, #999, #1000, #1001, #1002, #1003, #1004, #1005, #1006, #1007, #1008, #1009, #1010, #1011, #1012, #1013, #1014, #1015, #1016, #1017, #1018, #1019, #1020, #1021, #1022, #1023, #1024, #1025, #1026, #1027, #1028, #1029, #1030, #1031, #1032, #1033, #1034, #1035, #1036, #1037, #1038, #1039, #1040, #1041, #1042, #1043, #1044, #1045, #1046, #1047, #1048, #1049, #1050, #1051, #1052, #1053, #1054, #1055, #1056, #1057, #1058, #1059, #1060, #1061, #1062, #1063, #1064, #1065, #1066, #1067, #1068, #1069, #1070, #1071, #1072, #1073, #1074, #1075, #1076, #1077, #1078, #1079, #1080, #1081, #1082, #1083, #1084, #1085, #1086, #1087, #1088, #1089, #1090, #1091, #1092, #1093, #1094, #1095, #1096, #1097, #1098, #1099, #1100, #1101, #1102, #1103, #1104, #1105, #1106, #1107, #1108, #1109, #1110, #1111, #1112, #1113, #1114, #1115, #1116, #1117, #1118, #1119, #1120, #1121, #1122, #1123, #1124, #1125, #1126, #1127, #1128, #1129, #1130, #1131, #1132, #1133, #1134, #1135, #1136, #1137, #1138, #1139, #1140, #1141, #1142, #1143, #1144, #1145, #1146, #1147, #1148, #1149, #1150, #1151, #1152, #1153, #1154, #1155, #1156, #1157, #1158, #1159, #1160, #1161, #1162, #1163, #1164, #1165, #1166, #1167, #1168, #1169, #1170, #1171, #1172, #1173, #1174, #1175, #1176, #1177, #1178, #1179, #1180, #1181, #1182, #1183, #1184, #1185, #1186, #1187, #1188, #1189, #1190, #1191, #1192, #1193, #1194, #1195, #1196, #1197, #1198, #1199, #1200, #1201, #1202, #1203, #1204, #1205, #1206, #1207, #1208, #1209, #1210, #1211, #1212, #1213, #1214, #1215, #1216, #1217, #1218, #1219, #1220, #1221, #1222, #1223, #1224, #1225), .UNSPECIFIED., .F., .F., (3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3), (-1, -0.9961089494163424, -0.9922178988326849, -0.9883268482490273, -0.9844357976653697, -0.980544747081712, -0.9766536964980544, -0.9727626459143969, -0.9688715953307393, -0.9649805447470817, -0.9610894941634242, -0.9571984435797666, -0.9533073929961089, -0.9494163424124513, -0.9455252918287937, -0.9416342412451362, -0.9377431906614786, -0.933852140077821, -0.9299610894941635, -0.9260700389105059, -0.9221789883268483, -0.9182879377431906, -0.914396887159533, -0.9105058365758755, -0.9066147859922179, -0.9027237354085603, -0.8988326848249028, -0.8949416342412452, -0.8910505836575875, -0.8871595330739299, -0.8832684824902723, -0.8793774319066148, -0.8754863813229572, -0.8715953307392996, -0.867704280155642, -0.8638132295719845, -0.8599221789883269, -0.8560311284046693, -0.8521400778210116, -0.8482490272373541, -0.8443579766536965, -0.8404669260700389, -0.8365758754863813, -0.8326848249027237, -0.8287937743190661, -0.8249027237354085, -0.8210116731517509, -0.8171206225680934, -0.8132295719844358, -0.8093385214007782, -0.8054474708171206, -0.8015564202334631, -0.7976653696498055, -0.7937743190661479, -0.7898832684824902, -0.7859922178988327, -0.7821011673151751, -0.7782101167315175, -0.77431906614786, -0.7704280155642023, -0.7665369649805447, -0.7626459143968871, -0.7587548638132295, -0.754863813229572, -0.7509727626459144, -0.7470817120622568, -0.7431906614785992, -0.7392996108949417, -0.7354085603112841, -0.7315175097276265, -0.7276264591439688, -0.7237354085603113, -0.7198443579766537, -0.7159533073929961, -0.7120622568093385, -0.7081712062256809, -0.7042801556420233, -0.7003891050583657, -0.6964980544747081, -0.6926070038910506, -0.688715953307393, -0.6848249027237354, -0.6809338521400778, -0.6770428015564203, -0.6731517509727627, -0.6692607003891051, -0.6653696498054474, -0.6614785992217899, -0.6575875486381323, -0.6536964980544747, -0.6498054474708171, -0.6459143968871595, -0.6420233463035019, -0.6381322957198443, -0.6342412451361867, -0.6303501945525292, -0.6264591439688716, -0.622568093385214, -0.6186770428015564, -0.6147859922178989, -0.6108949416342413, -0.6070038910505837, -0.603112840466926, -0.5992217898832685, -0.5953307392996109, -0.5914396887159533, -0.5875486381322957, -0.5836575875486381, -0.5797665369649805, -0.5758754863813229, -0.5719844357976653, -0.5680933852140078, -0.5642023346303502, -0.5603112840466926, -0.556420233463035, -0.5525291828793775, -0.5486381322957199, -0.5447470817120623, -0.5408560311284046, -0.5369649805447471, -0.5330739299610895, -0.5291828793774319, -0.5252918287937743, -0.5214007782101167, -0.5175097276264591, -0.5136186770428015, -0.5097276264591439, -0.5058365758754864, -0.5019455252918288, -0.4980544747081712, -0.49416342412451364, -0.49027237354085607, -0.48638132295719844, -0.48249027237354086, -0.4785992217898833, -0.47470817120622566, -0.4708171206225681, -0.4669260700389105, -0.46303501945525294, -0.45914396887159536, -0.45525291828793774, -0.45136186770428016, -0.4474708171206226, -0.44357976653696496, -0.4396887159533074, -0.4357976653696498, -0.43190661478599224, -0.42801556420233466, -0.42412451361867703, -0.42023346303501946, -0.4163424124513619, -0.41245136186770426, -0.4085603112840467, -0.4046692607003891, -0.40077821011673154, -0.39688715953307396, -0.39299610894941633, -0.38910505836575876, -0.3852140077821012, -0.38132295719844356, -0.377431906614786, -0.3735408560311284, -0.36964980544747084, -0.36575875486381326, -0.36186770428015563, -0.35797665369649806, -0.3540856031128405, -0.35019455252918286, -0.3463035019455253, -0.3424124513618677, -0.33852140077821014, -0.33463035019455256, -0.33073929961089493, -0.32684824902723736, -0.3229571984435798, -0.31906614785992216, -0.3151750972762646, -0.311284046692607, -0.30739299610894943, -0.30350194552529186, -0.29961089494163423, -0.29571984435797666, -0.2918287937743191, -0.28793774319066145, -0.2840466926070039, -0.2801556420233463, -0.27626459143968873, -0.27237354085603116, -0.26848249027237353, -0.26459143968871596, -0.2607003891050584, -0.25680933852140075, -0.2529182879377432, -0.2490272373540856, -0.24513618677042803, -0.24124513618677043, -0.23735408560311283, -0.23346303501945526, -0.22957198443579768, -0.22568093385214008, -0.22178988326848248, -0.2178988326848249, -0.21400778210116733, -0.21011673151750973, -0.20622568093385213, -0.20233463035019456, -0.19844357976653698, -0.19455252918287938, -0.19066147859922178, -0.1867704280155642, -0.18287937743190663, -0.17898832684824903, -0.17509727626459143, -0.17120622568093385, -0.16731517509727628, -0.16342412451361868, -0.15953307392996108, -0.1556420233463035, -0.15175097276264593, -0.14785992217898833, -0.14396887159533073, -0.14007782101167315, -0.13618677042801558, -0.13229571984435798, -0.12840466926070038, -0.1245136186770428, -0.12062256809338522, -0.11673151750972763, -0.11284046692607004, -0.10894941634241245, -0.10505836575875487, -0.10116731517509728, -0.09727626459143969, -0.0933852140077821, -0.08949416342412451, -0.08560311284046693, -0.08171206225680934, -0.07782101167315175, -0.07392996108949416, -0.07003891050583658, -0.06614785992217899, -0.0622568093385214, -0.058365758754863814, -0.054474708171206226, -0.05058365758754864, -0.04669260700389105, -0.042801556420233464, -0.038910505836575876, -0.03501945525291829, -0.0311284046692607, -0.027237354085603113, -0.023346303501945526, -0.019455252918287938, -0.01556420233463035, -0.011673151750972763, -0.007782101167315175, -0.0038910505836575876, -0), .UNSPECIFIED.); #1227 = DIRECTION('NONE', (0, -1, 0)); #1228 = VECTOR('NONE', #1227, 1); #1229 = CARTESIAN_POINT('NONE', (-0.0365125, 0.019051000000000002, -0.05715)); diff --git a/public/kcl-samples/step/car-wheel-assembly.step b/public/kcl-samples/step/car-wheel-assembly.step index 9a5602753..4bf189298 100644 --- a/public/kcl-samples/step/car-wheel-assembly.step +++ b/public/kcl-samples/step/car-wheel-assembly.step @@ -3073,7 +3073,7 @@ DATA; #3057 = CARTESIAN_POINT('NONE', (0.051104890518972546, -0.039940414856583686, -0.0635)); #3058 = CARTESIAN_POINT('NONE', (0.052242074077479335, -0.038876903045998674, -0.0635)); #3059 = CARTESIAN_POINT('NONE', (0.05224392753122875, -0.03887516966712757, -0.0635)); -#3060 = CARTESIAN_POINT('NONE', (0.05311532463588208, -0.03767579444673182, -0.0635)); +#3060 = CARTESIAN_POINT('NONE', (0.05311532463588208, -0.03767579444673181, -0.0635)); #3061 = CARTESIAN_POINT('NONE', (0.05311674489404425, -0.03767383962907501, -0.0635)); #3062 = CARTESIAN_POINT('NONE', (0.053776795686355607, -0.03626367057234418, -0.0635)); #3063 = CARTESIAN_POINT('NONE', (0.05377787147891932, -0.036261372189549286, -0.0635)); @@ -3087,7 +3087,7 @@ DATA; #3071 = CARTESIAN_POINT('NONE', (0.053252818350252196, -0.029748655756475863, -0.0635)); #3072 = CARTESIAN_POINT('NONE', (0.05233460363130192, -0.028414043632913145, -0.0635)); #3073 = CARTESIAN_POINT('NONE', (0.05233310706682834, -0.028411868397590818, -0.0635)); -#3074 = CARTESIAN_POINT('NONE', (0.051232952266167, -0.02734405921816657, -0.0635)); +#3074 = CARTESIAN_POINT('NONE', (0.05123295226616701, -0.02734405921816657, -0.0635)); #3075 = CARTESIAN_POINT('NONE', (0.05123115916423111, -0.027342318835171704, -0.0635)); #3076 = CARTESIAN_POINT('NONE', (0.0499865731843106, -0.02652506813979786, -0.0635)); #3077 = CARTESIAN_POINT('NONE', (0.049984544679296, -0.026523736132881105, -0.0635)); @@ -3105,7 +3105,7 @@ DATA; #3089 = CARTESIAN_POINT('NONE', (0.0407616757108459, -0.02775624333996861, -0.0635)); #3090 = CARTESIAN_POINT('NONE', (0.03976400232776854, -0.0288872140372878, -0.0635)); #3091 = CARTESIAN_POINT('NONE', (0.03976237625653429, -0.028889057364922765, -0.0635)); -#3092 = B_SPLINE_CURVE_WITH_KNOTS('NONE', 2, (#3029, #3030, #3031, #3032, #3033, #3034, #3035, #3036, #3037, #3038, #3039, #3040, #3041, #3042, #3043, #3044, #3045, #3046, #3047, #3048, #3049, #3050, #3051, #3052, #3053, #3054, #3055, #3056, #3057, #3058, #3059, #3060, #3061, #3062, #3063, #3064, #3065, #3066, #3067, #3068, #3069, #3070, #3071, #3072, #3073, #3074, #3075, #3076, #3077, #3078, #3079, #3080, #3081, #3082, #3083, #3084, #3085, #3086, #3087, #3088, #3089, #3090, #3091), .UNSPECIFIED., .F., .F., (3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3), (0, 0.01639344262295082, 0.03278688524590164, 0.04918032786885246, 0.06557377049180328, 0.0819672131147541, 0.09836065573770492, 0.11475409836065574, 0.13114754098360656, 0.14754098360655737, 0.1639344262295082, 0.18032786885245902, 0.19672131147540983, 0.21311475409836067, 0.22950819672131148, 0.24590163934426232, 0.26229508196721313, 0.27868852459016397, 0.29508196721311475, 0.3114754098360656, 0.3278688524590164, 0.3442622950819672, 0.36065573770491804, 0.3770491803278689, 0.39344262295081966, 0.4098360655737705, 0.42622950819672134, 0.4426229508196722, 0.45901639344262296, 0.4754098360655738, 0.49180327868852464, 0.5081967213114753, 0.5245901639344261, 0.540983606557377, 0.5573770491803278, 0.5737704918032787, 0.5901639344262295, 0.6065573770491803, 0.6229508196721312, 0.639344262295082, 0.6557377049180328, 0.6721311475409836, 0.6885245901639344, 0.7049180327868853, 0.721311475409836, 0.7377049180327868, 0.7540983606557377, 0.7704918032786885, 0.7868852459016393, 0.8032786885245902, 0.819672131147541, 0.8360655737704918, 0.8524590163934427, 0.8688524590163934, 0.8852459016393442, 0.9016393442622951, 0.9180327868852459, 0.9344262295081968, 0.9508196721311475, 0.9672131147540983, 0.9836065573770492, 1), .UNSPECIFIED.); +#3092 = B_SPLINE_CURVE_WITH_KNOTS('NONE', 2, (#3029, #3030, #3031, #3032, #3033, #3034, #3035, #3036, #3037, #3038, #3039, #3040, #3041, #3042, #3043, #3044, #3045, #3046, #3047, #3048, #3049, #3050, #3051, #3052, #3053, #3054, #3055, #3056, #3057, #3058, #3059, #3060, #3061, #3062, #3063, #3064, #3065, #3066, #3067, #3068, #3069, #3070, #3071, #3072, #3073, #3074, #3075, #3076, #3077, #3078, #3079, #3080, #3081, #3082, #3083, #3084, #3085, #3086, #3087, #3088, #3089, #3090, #3091), .UNSPECIFIED., .F., .F., (3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3), (-1, -0.9836065573770492, -0.9672131147540983, -0.9508196721311475, -0.9344262295081968, -0.9180327868852459, -0.9016393442622951, -0.8852459016393442, -0.8688524590163934, -0.8524590163934427, -0.8360655737704918, -0.819672131147541, -0.8032786885245902, -0.7868852459016393, -0.7704918032786885, -0.7540983606557377, -0.7377049180327868, -0.721311475409836, -0.7049180327868853, -0.6885245901639344, -0.6721311475409836, -0.6557377049180328, -0.639344262295082, -0.6229508196721312, -0.6065573770491803, -0.5901639344262295, -0.5737704918032787, -0.5573770491803278, -0.540983606557377, -0.5245901639344261, -0.5081967213114753, -0.49180327868852464, -0.4754098360655738, -0.45901639344262296, -0.4426229508196722, -0.42622950819672134, -0.4098360655737705, -0.39344262295081966, -0.3770491803278689, -0.36065573770491804, -0.3442622950819672, -0.3278688524590164, -0.3114754098360656, -0.29508196721311475, -0.27868852459016397, -0.26229508196721313, -0.24590163934426232, -0.22950819672131148, -0.21311475409836067, -0.19672131147540983, -0.18032786885245902, -0.1639344262295082, -0.14754098360655737, -0.13114754098360656, -0.11475409836065574, -0.09836065573770492, -0.0819672131147541, -0.06557377049180328, -0.04918032786885246, -0.03278688524590164, -0.01639344262295082, -0), .UNSPECIFIED.); #3093 = DIRECTION('NONE', (0, 0, 1)); #3094 = VECTOR('NONE', #3093, 1); #3095 = CARTESIAN_POINT('NONE', (0.03976237625653429, -0.028889057364922765, -0.063501)); diff --git a/rust/.config/nextest.toml b/rust/.config/nextest.toml index d5fca2d31..6cfeb01a2 100644 --- a/rust/.config/nextest.toml +++ b/rust/.config/nextest.toml @@ -6,7 +6,7 @@ uses-engine = { max-threads = 4 } after-engine = { max-threads = 12 } [profile.default] -slow-timeout = { period = "30s", terminate-after = 1 } +slow-timeout = { period = "90s", terminate-after = 1 } [profile.ci] slow-timeout = { period = "50s", terminate-after = 5 } diff --git a/rust/kcl-lib/e2e/executor/main.rs b/rust/kcl-lib/e2e/executor/main.rs index f85931fd3..805985df3 100644 --- a/rust/kcl-lib/e2e/executor/main.rs +++ b/rust/kcl-lib/e2e/executor/main.rs @@ -2106,7 +2106,7 @@ async fn kcl_test_better_type_names() { }, None => todo!(), }; - assert_eq!(err, "This function expected the input argument to be of type SolidSet but it's actually of type Sketch. You can convert a sketch (2D) into a Solid (3D) by calling a function like `extrude` or `revolve`"); + assert_eq!(err, "This function expected the input argument to be one or more Solids but it's actually of type Sketch. You can convert a sketch (2D) into a Solid (3D) by calling a function like `extrude` or `revolve`"); } #[tokio::test(flavor = "multi_thread")] diff --git a/rust/kcl-lib/src/docs/mod.rs b/rust/kcl-lib/src/docs/mod.rs index 8ac5ee460..30586290f 100644 --- a/rust/kcl-lib/src/docs/mod.rs +++ b/rust/kcl-lib/src/docs/mod.rs @@ -128,9 +128,9 @@ impl StdLibFnArg { "" }; if self.type_ == "Sketch" - || self.type_ == "SketchSet" + || self.type_ == "[Sketch]" || self.type_ == "Solid" - || self.type_ == "SolidSet" + || self.type_ == "[Solid]" || self.type_ == "SketchSurface" || self.type_ == "SketchOrSurface" || self.type_ == "SolidOrImportedGeometry" diff --git a/rust/kcl-lib/src/execution/cad_op.rs b/rust/kcl-lib/src/execution/cad_op.rs index 4e6fbd7dd..a77f13560 100644 --- a/rust/kcl-lib/src/execution/cad_op.rs +++ b/rust/kcl-lib/src/execution/cad_op.rs @@ -180,15 +180,9 @@ pub enum OpKclValue { Sketch { value: Box, }, - Sketches { - value: Vec, - }, Solid { value: Box, }, - Solids { - value: Vec, - }, Helix { value: Box, }, @@ -234,7 +228,7 @@ impl From<&KclValue> for OpKclValue { ty: ty.clone(), }, KclValue::String { value, .. } => Self::String { value: value.clone() }, - KclValue::MixedArray { value, .. } => { + KclValue::MixedArray { value, .. } | KclValue::HomArray { value, .. } => { let value = value.iter().map(Self::from).collect(); Self::Array { value } } @@ -260,29 +254,11 @@ impl From<&KclValue> for OpKclValue { artifact_id: value.artifact_id, }), }, - KclValue::Sketches { value } => { - let value = value - .iter() - .map(|sketch| OpSketch { - artifact_id: sketch.artifact_id, - }) - .collect(); - Self::Sketches { value } - } KclValue::Solid { value } => Self::Solid { value: Box::new(OpSolid { artifact_id: value.artifact_id, }), }, - KclValue::Solids { value } => { - let value = value - .iter() - .map(|solid| OpSolid { - artifact_id: solid.artifact_id, - }) - .collect(); - Self::Solids { value } - } KclValue::Helix { value } => Self::Helix { value: Box::new(OpHelix { artifact_id: value.artifact_id, diff --git a/rust/kcl-lib/src/execution/exec_ast.rs b/rust/kcl-lib/src/execution/exec_ast.rs index a0ab8d4d9..4e4d2ef90 100644 --- a/rust/kcl-lib/src/execution/exec_ast.rs +++ b/rust/kcl-lib/src/execution/exec_ast.rs @@ -8,11 +8,11 @@ use crate::{ execution::{ annotations, cad_op::{OpArg, OpKclValue, Operation}, - kcl_value::{FunctionSource, NumericType, PrimitiveType, RuntimeType}, + kcl_value::{FunctionSource, NumericType, RuntimeType}, memory, state::ModuleState, - BodyType, EnvironmentRef, ExecState, ExecutorContext, KclValue, Metadata, Plane, PlaneType, Point3d, - TagEngineInfo, TagIdentifier, + BodyType, EnvironmentRef, ExecState, ExecutorContext, KclValue, Metadata, PlaneType, TagEngineInfo, + TagIdentifier, }, modules::{ModuleId, ModulePath, ModuleRepr}, parsing::ast::types::{ @@ -23,7 +23,7 @@ use crate::{ }, source_range::SourceRange, std::{ - args::{Arg, FromKclValue, KwArgs}, + args::{Arg, KwArgs}, FunctionKind, }, CompilationError, @@ -647,11 +647,11 @@ impl ExecutorContext { let result = self .execute_expr(&expr.expr, exec_state, metadata, &[], statement_kind) .await?; - coerce(result, &expr.ty, exec_state).map_err(|value| { + coerce(&result, &expr.ty, exec_state).ok_or_else(|| { KclError::Semantic(KclErrorDetails { message: format!( "could not coerce {} value to type {}", - value.human_friendly_type(), + result.human_friendly_type(), expr.ty ), source_ranges: vec![expr.into()], @@ -663,72 +663,14 @@ impl ExecutorContext { } } -fn coerce(value: KclValue, ty: &Node, exec_state: &mut ExecState) -> Result { - let ty = RuntimeType::from_parsed(ty.inner.clone(), exec_state, (&value).into()) +fn coerce(value: &KclValue, ty: &Node, exec_state: &mut ExecState) -> Option { + let ty = RuntimeType::from_parsed(ty.inner.clone(), exec_state, value.into()) .map_err(|e| { exec_state.err(e); - value.clone() - })? - .ok_or_else(|| value.clone())?; - if value.has_type(&ty) { - return Ok(value); - } + }) + .ok()??; - // TODO coerce numeric types - - if let KclValue::Object { value, meta } = value { - return match ty { - RuntimeType::Primitive(PrimitiveType::Plane) => { - let origin = value - .get("origin") - .and_then(Point3d::from_kcl_val) - .ok_or_else(|| KclValue::Object { - value: value.clone(), - meta: meta.clone(), - })?; - let x_axis = value - .get("xAxis") - .and_then(Point3d::from_kcl_val) - .ok_or_else(|| KclValue::Object { - value: value.clone(), - meta: meta.clone(), - })?; - let y_axis = value - .get("yAxis") - .and_then(Point3d::from_kcl_val) - .ok_or_else(|| KclValue::Object { - value: value.clone(), - meta: meta.clone(), - })?; - let z_axis = value - .get("zAxis") - .and_then(Point3d::from_kcl_val) - .ok_or_else(|| KclValue::Object { - value: value.clone(), - meta: meta.clone(), - })?; - - let id = exec_state.next_uuid(); - let plane = Plane { - id, - artifact_id: id.into(), - origin, - x_axis, - y_axis, - z_axis, - value: PlaneType::Uninit, - // TODO use length unit from origin - units: exec_state.length_unit(), - meta, - }; - - Ok(KclValue::Plane { value: Box::new(plane) }) - } - _ => Err(KclValue::Object { value, meta }), - }; - } - - Err(value) + value.coerce(&ty, exec_state) } impl BinaryPart { @@ -1450,6 +1392,11 @@ fn update_memory_for_tags_of_geometry(result: &mut KclValue, exec_state: &mut Ex } } } + KclValue::MixedArray { value, .. } | KclValue::HomArray { value, .. } => { + for v in value { + update_memory_for_tags_of_geometry(v, exec_state)?; + } + } _ => {} } Ok(()) diff --git a/rust/kcl-lib/src/execution/geometry.rs b/rust/kcl-lib/src/execution/geometry.rs index 9dc9f1564..4da68d64c 100644 --- a/rust/kcl-lib/src/execution/geometry.rs +++ b/rust/kcl-lib/src/execution/geometry.rs @@ -23,8 +23,8 @@ type Point3D = kcmc::shared::Point3d; #[ts(export)] #[serde(tag = "type")] pub enum Geometry { - Sketch(Box), - Solid(Box), + Sketch(Sketch), + Solid(Solid), } impl Geometry { @@ -52,8 +52,8 @@ impl Geometry { #[serde(tag = "type")] #[allow(clippy::vec_box)] pub enum Geometries { - Sketches(Vec>), - Solids(Vec>), + Sketches(Vec), + Solids(Vec), } impl From for Geometries { @@ -65,150 +65,6 @@ impl From for Geometries { } } -/// A sketch or a group of sketches. -#[derive(Debug, Clone, Deserialize, Serialize, PartialEq, ts_rs::TS, JsonSchema)] -#[ts(export)] -#[serde(tag = "type", rename_all = "camelCase")] -#[allow(clippy::vec_box)] -pub enum SketchSet { - Sketch(Box), - Sketches(Vec>), -} - -impl SketchSet { - pub fn meta(&self) -> Vec { - match self { - SketchSet::Sketch(sg) => sg.meta.clone(), - SketchSet::Sketches(sg) => sg.iter().flat_map(|sg| sg.meta.clone()).collect(), - } - } -} - -impl From for Vec { - fn from(value: SketchSet) -> Self { - match value { - SketchSet::Sketch(sg) => vec![*sg], - SketchSet::Sketches(sgs) => sgs.into_iter().map(|sg| *sg).collect(), - } - } -} - -impl From for SketchSet { - fn from(sg: Sketch) -> Self { - SketchSet::Sketch(Box::new(sg)) - } -} - -impl From> for SketchSet { - fn from(sg: Box) -> Self { - SketchSet::Sketch(sg) - } -} - -impl From> for SketchSet { - fn from(sg: Vec) -> Self { - if sg.len() == 1 { - SketchSet::Sketch(Box::new(sg[0].clone())) - } else { - SketchSet::Sketches(sg.into_iter().map(Box::new).collect()) - } - } -} - -impl From>> for SketchSet { - fn from(sg: Vec>) -> Self { - if sg.len() == 1 { - SketchSet::Sketch(sg[0].clone()) - } else { - SketchSet::Sketches(sg) - } - } -} - -impl From for Vec> { - fn from(sg: SketchSet) -> Self { - match sg { - SketchSet::Sketch(sg) => vec![sg], - SketchSet::Sketches(sgs) => sgs, - } - } -} - -impl From<&Sketch> for Vec> { - fn from(sg: &Sketch) -> Self { - vec![Box::new(sg.clone())] - } -} - -impl From> for Vec> { - fn from(sg: Box) -> Self { - vec![sg] - } -} - -/// A solid or a group of solids. -#[derive(Debug, Clone, Deserialize, Serialize, PartialEq, ts_rs::TS, JsonSchema)] -#[ts(export)] -#[serde(tag = "type", rename_all = "camelCase")] -#[allow(clippy::vec_box)] -pub enum SolidSet { - Solid(Box), - Solids(Vec>), -} - -impl From for SolidSet { - fn from(eg: Solid) -> Self { - SolidSet::Solid(Box::new(eg)) - } -} - -impl From> for SolidSet { - fn from(eg: Box) -> Self { - SolidSet::Solid(eg) - } -} - -impl From> for SolidSet { - fn from(eg: Vec) -> Self { - if eg.len() == 1 { - SolidSet::Solid(Box::new(eg[0].clone())) - } else { - SolidSet::Solids(eg.into_iter().map(Box::new).collect()) - } - } -} - -impl From>> for SolidSet { - fn from(eg: Vec>) -> Self { - if eg.len() == 1 { - SolidSet::Solid(eg[0].clone()) - } else { - SolidSet::Solids(eg) - } - } -} - -impl From for Vec> { - fn from(eg: SolidSet) -> Self { - match eg { - SolidSet::Solid(eg) => vec![eg], - SolidSet::Solids(egs) => egs, - } - } -} - -impl From<&Solid> for Vec> { - fn from(eg: &Solid) -> Self { - vec![Box::new(eg.clone())] - } -} - -impl From> for Vec> { - fn from(eg: Box) -> Self { - vec![eg] - } -} - /// Data for an imported geometry. #[derive(Debug, Clone, Deserialize, Serialize, PartialEq, ts_rs::TS, JsonSchema)] #[ts(export)] @@ -228,17 +84,29 @@ pub struct ImportedGeometry { #[serde(tag = "type", rename_all = "camelCase")] #[allow(clippy::vec_box)] pub enum SolidOrImportedGeometry { - Solid(Box), ImportedGeometry(Box), - SolidSet(Vec>), + SolidSet(Vec), } impl From for crate::execution::KclValue { fn from(value: SolidOrImportedGeometry) -> Self { match value { - SolidOrImportedGeometry::Solid(s) => crate::execution::KclValue::Solid { value: s }, SolidOrImportedGeometry::ImportedGeometry(s) => crate::execution::KclValue::ImportedGeometry(*s), - SolidOrImportedGeometry::SolidSet(s) => crate::execution::KclValue::Solids { value: s }, + SolidOrImportedGeometry::SolidSet(mut s) => { + if s.len() == 1 { + crate::execution::KclValue::Solid { + value: Box::new(s.pop().unwrap()), + } + } else { + crate::execution::KclValue::HomArray { + value: s + .into_iter() + .map(|s| crate::execution::KclValue::Solid { value: Box::new(s) }) + .collect(), + ty: crate::execution::PrimitiveType::Solid, + } + } + } } } } @@ -246,7 +114,6 @@ impl From for crate::execution::KclValue { impl SolidOrImportedGeometry { pub(crate) fn ids(&self) -> Vec { match self { - SolidOrImportedGeometry::Solid(s) => vec![s.id], SolidOrImportedGeometry::ImportedGeometry(s) => vec![s.id], SolidOrImportedGeometry::SolidSet(s) => s.iter().map(|s| s.id).collect(), } diff --git a/rust/kcl-lib/src/execution/kcl_value.rs b/rust/kcl-lib/src/execution/kcl_value.rs index 9a4e62032..9605f0fa2 100644 --- a/rust/kcl-lib/src/execution/kcl_value.rs +++ b/rust/kcl-lib/src/execution/kcl_value.rs @@ -6,13 +6,12 @@ use serde::{Deserialize, Serialize}; use super::{ memory::{self, EnvironmentRef}, - MetaSettings, + MetaSettings, Point3d, }; use crate::{ errors::KclErrorDetails, execution::{ - ExecState, ExecutorContext, Face, Helix, ImportedGeometry, Metadata, Plane, Sketch, SketchSet, Solid, SolidSet, - TagIdentifier, + ExecState, ExecutorContext, Face, Helix, ImportedGeometry, Metadata, Plane, Sketch, Solid, TagIdentifier, }, parsing::{ ast::types::{ @@ -21,7 +20,10 @@ use crate::{ }, token::NumericSuffix, }, - std::{args::Arg, StdFnProps}, + std::{ + args::{Arg, FromKclValue}, + StdFnProps, + }, CompilationError, KclError, ModuleId, SourceRange, }; @@ -58,6 +60,13 @@ pub enum KclValue { #[serde(skip)] meta: Vec, }, + // An array where all values have a shared type (not necessarily the same principal type). + HomArray { + value: Vec, + // The type of values, not the array type. + #[serde(skip)] + ty: PrimitiveType, + }, Object { value: KclObjectFields, #[serde(skip)] @@ -74,15 +83,9 @@ pub enum KclValue { Sketch { value: Box, }, - Sketches { - value: Vec>, - }, Solid { value: Box, }, - Solids { - value: Vec>, - }, Helix { value: Box, }, @@ -139,48 +142,46 @@ impl JsonSchema for FunctionSource { } } -impl From for KclValue { - fn from(sg: SketchSet) -> Self { - match sg { - SketchSet::Sketch(value) => KclValue::Sketch { value }, - SketchSet::Sketches(value) => KclValue::Sketches { value }, - } - } -} - -impl From>> for KclValue { - fn from(sg: Vec>) -> Self { - KclValue::Sketches { value: sg } - } -} - -impl From for KclValue { - fn from(eg: SolidSet) -> Self { - match eg { - SolidSet::Solid(eg) => KclValue::Solid { value: eg }, - SolidSet::Solids(egs) => KclValue::Solids { value: egs }, - } - } -} - -impl From>> for KclValue { - fn from(eg: Vec>) -> Self { +impl From> for KclValue { + fn from(mut eg: Vec) -> Self { if eg.len() == 1 { - KclValue::Solid { value: eg[0].clone() } + KclValue::Sketch { + value: Box::new(eg.pop().unwrap()), + } } else { - KclValue::Solids { value: eg } + KclValue::HomArray { + value: eg + .into_iter() + .map(|s| KclValue::Sketch { value: Box::new(s) }) + .collect(), + ty: crate::execution::PrimitiveType::Sketch, + } } } } + +impl From> for KclValue { + fn from(mut eg: Vec) -> Self { + if eg.len() == 1 { + KclValue::Solid { + value: Box::new(eg.pop().unwrap()), + } + } else { + KclValue::HomArray { + value: eg.into_iter().map(|s| KclValue::Solid { value: Box::new(s) }).collect(), + ty: crate::execution::PrimitiveType::Solid, + } + } + } +} + impl From for Vec { fn from(item: KclValue) -> Self { match item { KclValue::TagDeclarator(t) => vec![SourceRange::new(t.start, t.end, t.module_id)], KclValue::TagIdentifier(t) => to_vec_sr(&t.meta), KclValue::Solid { value } => to_vec_sr(&value.meta), - KclValue::Solids { value } => value.iter().flat_map(|eg| to_vec_sr(&eg.meta)).collect(), KclValue::Sketch { value } => to_vec_sr(&value.meta), - KclValue::Sketches { value } => value.iter().flat_map(|eg| to_vec_sr(&eg.meta)).collect(), KclValue::Helix { value } => to_vec_sr(&value.meta), KclValue::ImportedGeometry(i) => to_vec_sr(&i.meta), KclValue::Function { meta, .. } => to_vec_sr(&meta), @@ -190,6 +191,7 @@ impl From for Vec { KclValue::Number { meta, .. } => to_vec_sr(&meta), KclValue::String { meta, .. } => to_vec_sr(&meta), KclValue::MixedArray { meta, .. } => to_vec_sr(&meta), + KclValue::HomArray { value, .. } => value.iter().flat_map(Into::>::into).collect(), KclValue::Object { meta, .. } => to_vec_sr(&meta), KclValue::Module { meta, .. } => to_vec_sr(&meta), KclValue::Uuid { meta, .. } => to_vec_sr(&meta), @@ -209,9 +211,7 @@ impl From<&KclValue> for Vec { KclValue::TagDeclarator(t) => vec![SourceRange::new(t.start, t.end, t.module_id)], KclValue::TagIdentifier(t) => to_vec_sr(&t.meta), KclValue::Solid { value } => to_vec_sr(&value.meta), - KclValue::Solids { value } => value.iter().flat_map(|eg| to_vec_sr(&eg.meta)).collect(), KclValue::Sketch { value } => to_vec_sr(&value.meta), - KclValue::Sketches { value } => value.iter().flat_map(|eg| to_vec_sr(&eg.meta)).collect(), KclValue::Helix { value } => to_vec_sr(&value.meta), KclValue::ImportedGeometry(i) => to_vec_sr(&i.meta), KclValue::Function { meta, .. } => to_vec_sr(meta), @@ -222,6 +222,7 @@ impl From<&KclValue> for Vec { KclValue::String { meta, .. } => to_vec_sr(meta), KclValue::Uuid { meta, .. } => to_vec_sr(meta), KclValue::MixedArray { meta, .. } => to_vec_sr(meta), + KclValue::HomArray { value, .. } => value.iter().flat_map(Into::>::into).collect(), KclValue::Object { meta, .. } => to_vec_sr(meta), KclValue::Module { meta, .. } => to_vec_sr(meta), KclValue::KclNone { meta, .. } => to_vec_sr(meta), @@ -245,15 +246,14 @@ impl KclValue { KclValue::Number { meta, .. } => meta.clone(), KclValue::String { value: _, meta } => meta.clone(), KclValue::MixedArray { value: _, meta } => meta.clone(), + KclValue::HomArray { value, .. } => value.iter().flat_map(|v| v.metadata()).collect(), KclValue::Object { value: _, meta } => meta.clone(), KclValue::TagIdentifier(x) => x.meta.clone(), KclValue::TagDeclarator(x) => vec![x.metadata()], KclValue::Plane { value } => value.meta.clone(), KclValue::Face { value } => value.meta.clone(), KclValue::Sketch { value } => value.meta.clone(), - KclValue::Sketches { value } => value.iter().flat_map(|sketch| &sketch.meta).copied().collect(), KclValue::Solid { value } => value.meta.clone(), - KclValue::Solids { value } => value.iter().flat_map(|sketch| &sketch.meta).copied().collect(), KclValue::Helix { value } => value.meta.clone(), KclValue::ImportedGeometry(x) => x.meta.clone(), KclValue::Function { meta, .. } => meta.clone(), @@ -276,29 +276,6 @@ impl KclValue { Some(ast.as_source_range()) } - pub(crate) fn get_solid_set(&self) -> Result { - match self { - KclValue::Solid { value } => Ok(SolidSet::Solid(value.clone())), - KclValue::Solids { value } => Ok(SolidSet::Solids(value.clone())), - KclValue::MixedArray { value, .. } => { - let solids: Vec<_> = value - .iter() - .enumerate() - .map(|(i, v)| { - v.as_solid().map(|v| v.to_owned()).map(Box::new).ok_or_else(|| { - anyhow::anyhow!( - "expected this array to only contain solids, but element {i} was actually {}", - v.human_friendly_type() - ) - }) - }) - .collect::>()?; - Ok(SolidSet::Solids(solids)) - } - _ => anyhow::bail!("Not a solid or solids: {:?}", self), - } - } - #[allow(unused)] pub(crate) fn none() -> Self { Self::KclNone { @@ -315,9 +292,7 @@ impl KclValue { KclValue::TagDeclarator(_) => "TagDeclarator", KclValue::TagIdentifier(_) => "TagIdentifier", KclValue::Solid { .. } => "Solid", - KclValue::Solids { .. } => "Solids", KclValue::Sketch { .. } => "Sketch", - KclValue::Sketches { .. } => "Sketches", KclValue::Helix { .. } => "Helix", KclValue::ImportedGeometry(_) => "ImportedGeometry", KclValue::Function { .. } => "Function", @@ -327,6 +302,7 @@ impl KclValue { KclValue::Number { .. } => "number", KclValue::String { .. } => "string (text)", KclValue::MixedArray { .. } => "array (list)", + KclValue::HomArray { .. } => "array (list)", KclValue::Object { .. } => "object", KclValue::Module { .. } => "module", KclValue::Type { .. } => "type", @@ -481,6 +457,14 @@ impl KclValue { } } + pub fn as_sketch(&self) -> Option<&Sketch> { + if let KclValue::Sketch { value } = self { + Some(value) + } else { + None + } + } + pub fn as_mut_sketch(&mut self) -> Option<&mut Sketch> { if let KclValue::Sketch { value } = self { Some(value) @@ -578,6 +562,215 @@ impl KclValue { self_ty.subtype(ty) } + /// Coerce `self` to a new value which has `ty` as it's closest supertype. + /// + /// If the result is Some, then: + /// - result.principal_type().unwrap().subtype(ty) + /// + /// If self.principal_type() == ty then result == self + pub fn coerce(&self, ty: &RuntimeType, exec_state: &mut ExecState) -> Option { + match ty { + RuntimeType::Primitive(ty) => self.coerce_to_primitive_type(ty, exec_state), + RuntimeType::Array(ty, len) => self.coerce_to_array_type(ty, *len, exec_state), + RuntimeType::Tuple(tys) => self.coerce_to_tuple_type(tys, exec_state), + RuntimeType::Union(tys) => self.coerce_to_union_type(tys, exec_state), + RuntimeType::Object(tys) => self.coerce_to_object_type(tys, exec_state), + } + } + + fn coerce_to_primitive_type(&self, ty: &PrimitiveType, exec_state: &mut ExecState) -> Option { + let value = match self { + KclValue::MixedArray { value, .. } | KclValue::HomArray { value, .. } if value.len() == 1 => &value[0], + _ => self, + }; + match ty { + // TODO numeric type coercions + PrimitiveType::Number(_ty) => match value { + KclValue::Number { .. } => Some(value.clone()), + _ => None, + }, + PrimitiveType::String => match value { + KclValue::String { .. } => Some(value.clone()), + _ => None, + }, + PrimitiveType::Boolean => match value { + KclValue::Bool { .. } => Some(value.clone()), + _ => None, + }, + PrimitiveType::Sketch => match value { + KclValue::Sketch { .. } => Some(value.clone()), + _ => None, + }, + PrimitiveType::Solid => match value { + KclValue::Solid { .. } => Some(value.clone()), + _ => None, + }, + PrimitiveType::Plane => match value { + KclValue::Plane { .. } => Some(value.clone()), + KclValue::Object { value, meta } => { + let origin = value.get("origin").and_then(Point3d::from_kcl_val)?; + let x_axis = value.get("xAxis").and_then(Point3d::from_kcl_val)?; + let y_axis = value.get("yAxis").and_then(Point3d::from_kcl_val)?; + let z_axis = value.get("zAxis").and_then(Point3d::from_kcl_val)?; + + let id = exec_state.mod_local.id_generator.next_uuid(); + let plane = Plane { + id, + artifact_id: id.into(), + origin, + x_axis, + y_axis, + z_axis, + value: super::PlaneType::Uninit, + // TODO use length unit from origin + units: exec_state.length_unit(), + meta: meta.clone(), + }; + + Some(KclValue::Plane { value: Box::new(plane) }) + } + _ => None, + }, + PrimitiveType::ImportedGeometry => match value { + KclValue::ImportedGeometry { .. } => Some(value.clone()), + _ => None, + }, + } + } + + fn coerce_to_array_type(&self, ty: &PrimitiveType, len: ArrayLen, exec_state: &mut ExecState) -> Option { + match self { + KclValue::HomArray { value, ty: aty } => { + // TODO could check types of values individually + if aty != ty { + return None; + } + + let value = match len { + ArrayLen::None => value.clone(), + ArrayLen::NonEmpty => { + if value.is_empty() { + return None; + } + + value.clone() + } + ArrayLen::Known(n) => { + if n != value.len() { + return None; + } + + value[..n].to_vec() + } + }; + + Some(KclValue::HomArray { value, ty: ty.clone() }) + } + KclValue::MixedArray { value, .. } => { + let value = match len { + ArrayLen::None => value.clone(), + ArrayLen::NonEmpty => { + if value.is_empty() { + return None; + } + + value.clone() + } + ArrayLen::Known(n) => { + if n != value.len() { + return None; + } + + value[..n].to_vec() + } + }; + + let rt = RuntimeType::Primitive(ty.clone()); + let value = value + .iter() + .map(|v| v.coerce(&rt, exec_state)) + .collect::>>()?; + + Some(KclValue::HomArray { value, ty: ty.clone() }) + } + KclValue::KclNone { .. } if len.satisfied(0) => Some(KclValue::HomArray { + value: Vec::new(), + ty: ty.clone(), + }), + value if len.satisfied(1) => { + if value.has_type(&RuntimeType::Primitive(ty.clone())) { + Some(KclValue::HomArray { + value: vec![value.clone()], + ty: ty.clone(), + }) + } else { + None + } + } + _ => None, + } + } + + fn coerce_to_tuple_type(&self, tys: &[PrimitiveType], exec_state: &mut ExecState) -> Option { + match self { + KclValue::MixedArray { value, .. } | KclValue::HomArray { value, .. } => { + if value.len() < tys.len() { + return None; + } + let mut result = Vec::new(); + for (i, t) in tys.iter().enumerate() { + result.push(value[i].coerce_to_primitive_type(t, exec_state)?); + } + + Some(KclValue::MixedArray { + value: result, + meta: Vec::new(), + }) + } + KclValue::KclNone { meta, .. } if tys.is_empty() => Some(KclValue::MixedArray { + value: Vec::new(), + meta: meta.clone(), + }), + value if tys.len() == 1 => { + if value.has_type(&RuntimeType::Primitive(tys[0].clone())) { + Some(KclValue::MixedArray { + value: vec![value.clone()], + meta: Vec::new(), + }) + } else { + None + } + } + _ => None, + } + } + + fn coerce_to_union_type(&self, tys: &[RuntimeType], exec_state: &mut ExecState) -> Option { + for t in tys { + if let Some(v) = self.coerce(t, exec_state) { + return Some(v); + } + } + + None + } + + fn coerce_to_object_type(&self, tys: &[(String, RuntimeType)], _exec_state: &mut ExecState) -> Option { + match self { + KclValue::Object { value, .. } => { + for (s, t) in tys { + // TODO coerce fields + if !value.get(s)?.has_type(t) { + return None; + } + } + // TODO remove non-required fields + Some(self.clone()) + } + _ => None, + } + } + pub fn principal_type(&self) -> Option { match self { KclValue::Bool { .. } => Some(RuntimeType::Primitive(PrimitiveType::Boolean)), @@ -592,18 +785,17 @@ impl KclValue { } KclValue::Plane { .. } => Some(RuntimeType::Primitive(PrimitiveType::Plane)), KclValue::Sketch { .. } => Some(RuntimeType::Primitive(PrimitiveType::Sketch)), - KclValue::Sketches { .. } => Some(RuntimeType::Array(PrimitiveType::Sketch)), KclValue::Solid { .. } => Some(RuntimeType::Primitive(PrimitiveType::Solid)), - KclValue::Solids { .. } => Some(RuntimeType::Array(PrimitiveType::Solid)), + KclValue::ImportedGeometry(..) => Some(RuntimeType::Primitive(PrimitiveType::ImportedGeometry)), KclValue::MixedArray { value, .. } => Some(RuntimeType::Tuple( value .iter() .map(|v| v.principal_type().and_then(RuntimeType::primitive)) .collect::>>()?, )), + KclValue::HomArray { ty, value, .. } => Some(RuntimeType::Array(ty.clone(), ArrayLen::Known(value.len()))), KclValue::Face { .. } => None, KclValue::Helix { .. } - | KclValue::ImportedGeometry(..) | KclValue::Function { .. } | KclValue::Module { .. } | KclValue::TagIdentifier(_) @@ -712,12 +904,11 @@ impl KclValue { KclValue::TagIdentifier(tag) => Some(format!("${}", tag.value)), // TODO better Array and Object stringification KclValue::MixedArray { .. } => Some("[...]".to_owned()), + KclValue::HomArray { .. } => Some("[...]".to_owned()), KclValue::Object { .. } => Some("{ ... }".to_owned()), KclValue::Module { .. } | KclValue::Solid { .. } - | KclValue::Solids { .. } | KclValue::Sketch { .. } - | KclValue::Sketches { .. } | KclValue::Helix { .. } | KclValue::ImportedGeometry(_) | KclValue::Function { .. } @@ -732,7 +923,8 @@ impl KclValue { #[derive(Debug, Clone, PartialEq)] pub enum RuntimeType { Primitive(PrimitiveType), - Array(PrimitiveType), + Array(PrimitiveType, ArrayLen), + Union(Vec), Tuple(Vec), Object(Vec<(String, RuntimeType)>), } @@ -747,7 +939,9 @@ impl RuntimeType { Type::Primitive(pt) => { PrimitiveType::from_parsed(pt, exec_state, source_range)?.map(RuntimeType::Primitive) } - Type::Array(pt) => PrimitiveType::from_parsed(pt, exec_state, source_range)?.map(RuntimeType::Array), + Type::Array(pt) => { + PrimitiveType::from_parsed(pt, exec_state, source_range)?.map(|t| RuntimeType::Array(t, ArrayLen::None)) + } Type::Object { properties } => properties .into_iter() .map(|p| { @@ -763,15 +957,37 @@ impl RuntimeType { }) } + pub fn human_friendly_type(&self) -> String { + match self { + RuntimeType::Primitive(ty) => ty.to_string(), + RuntimeType::Array(ty, ArrayLen::None) => format!("an array of {}", ty.display_multiple()), + RuntimeType::Array(ty, ArrayLen::NonEmpty) => format!("one or more {}", ty.display_multiple()), + RuntimeType::Array(ty, ArrayLen::Known(n)) => format!("an array of {n} {}", ty.display_multiple()), + RuntimeType::Union(tys) => tys + .iter() + .map(Self::human_friendly_type) + .collect::>() + .join(" or "), + RuntimeType::Tuple(tys) => format!( + "an array with values of types ({})", + tys.iter().map(PrimitiveType::to_string).collect::>().join(", ") + ), + RuntimeType::Object(_) => format!("an object with fields {}", self), + } + } + // Subtype with no coercion, including refining numeric types. fn subtype(&self, sup: &RuntimeType) -> bool { use RuntimeType::*; match (self, sup) { + (Primitive(t1), Primitive(t2)) => t1 == t2, // TODO arrays could be covariant - (Primitive(t1), Primitive(t2)) | (Array(t1), Array(t2)) => t1 == t2, + (Array(t1, l1), Array(t2, l2)) => t1 == t2 && l1.subtype(*l2), (Tuple(t1), Tuple(t2)) => t1 == t2, - (Tuple(t1), Array(t2)) => t1.iter().all(|t| t == t2), + (Tuple(t1), Array(t2, l2)) => (l2.satisfied(t1.len())) && t1.iter().all(|t| t == t2), + (Union(ts1), Union(ts2)) => ts1.iter().all(|t| ts2.contains(t)), + (t1, Union(ts2)) => ts2.contains(t1), // TODO record subtyping - subtype can be larger, fields can be covariant. (Object(t1), Object(t2)) => t1 == t2, _ => false, @@ -790,12 +1006,21 @@ impl fmt::Display for RuntimeType { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self { RuntimeType::Primitive(t) => t.fmt(f), - RuntimeType::Array(t) => write!(f, "[{t}]"), + RuntimeType::Array(t, l) => match l { + ArrayLen::None => write!(f, "[{t}]"), + ArrayLen::NonEmpty => write!(f, "[{t}; 1+]"), + ArrayLen::Known(n) => write!(f, "[{t}; {n}]"), + }, RuntimeType::Tuple(ts) => write!( f, "[{}]", ts.iter().map(|t| t.to_string()).collect::>().join(", ") ), + RuntimeType::Union(ts) => write!( + f, + "{}", + ts.iter().map(|t| t.to_string()).collect::>().join(" | ") + ), RuntimeType::Object(items) => write!( f, "{{ {} }}", @@ -809,6 +1034,34 @@ impl fmt::Display for RuntimeType { } } +#[derive(Debug, Clone, Copy, PartialEq)] +pub enum ArrayLen { + None, + NonEmpty, + Known(usize), +} + +impl ArrayLen { + pub fn subtype(self, other: ArrayLen) -> bool { + match (self, other) { + (_, ArrayLen::None) => true, + (ArrayLen::NonEmpty, ArrayLen::NonEmpty) => true, + (ArrayLen::Known(size), ArrayLen::NonEmpty) if size > 0 => true, + (ArrayLen::Known(s1), ArrayLen::Known(s2)) if s1 == s2 => true, + _ => false, + } + } + + /// True if the length constraint is satisfied by the supplied length. + fn satisfied(self, len: usize) -> bool { + match self { + ArrayLen::None => true, + ArrayLen::NonEmpty => len > 0, + ArrayLen::Known(s) => len == s, + } + } +} + #[derive(Debug, Clone, PartialEq)] pub enum PrimitiveType { Number(NumericType), @@ -817,6 +1070,7 @@ pub enum PrimitiveType { Sketch, Solid, Plane, + ImportedGeometry, } impl PrimitiveType { @@ -848,6 +1102,19 @@ impl PrimitiveType { _ => None, }) } + + fn display_multiple(&self) -> String { + match self { + PrimitiveType::Number(NumericType::Known(unit)) => format!("numbers({unit})"), + PrimitiveType::Number(_) => "numbers".to_owned(), + PrimitiveType::String => "strings".to_owned(), + PrimitiveType::Boolean => "bools".to_owned(), + PrimitiveType::Sketch => "Sketches".to_owned(), + PrimitiveType::Solid => "Solids".to_owned(), + PrimitiveType::Plane => "Planes".to_owned(), + PrimitiveType::ImportedGeometry => "imported geometries".to_owned(), + } + } } impl fmt::Display for PrimitiveType { @@ -860,6 +1127,7 @@ impl fmt::Display for PrimitiveType { PrimitiveType::Sketch => write!(f, "Sketch"), PrimitiveType::Solid => write!(f, "Solid"), PrimitiveType::Plane => write!(f, "Plane"), + PrimitiveType::ImportedGeometry => write!(f, "imported geometry"), } } } diff --git a/rust/kcl-lib/src/execution/mod.rs b/rust/kcl-lib/src/execution/mod.rs index ee44d9e5b..be8969c7d 100644 --- a/rust/kcl-lib/src/execution/mod.rs +++ b/rust/kcl-lib/src/execution/mod.rs @@ -1879,15 +1879,6 @@ let w = f() + f() parse_execute(ast).await.unwrap(); } - #[test] - fn test_serialize_memory_item() { - let mem = KclValue::Solids { - value: Default::default(), - }; - let json = serde_json::to_string(&mem).unwrap(); - assert_eq!(json, r#"{"type":"Solids","value":[]}"#); - } - #[tokio::test(flavor = "multi_thread")] async fn kcl_test_ids_stable_between_executions() { let code = r#"sketch001 = startSketchOn(XZ) diff --git a/rust/kcl-lib/src/lsp/kcl/mod.rs b/rust/kcl-lib/src/lsp/kcl/mod.rs index e4f6b99ea..317f371c7 100644 --- a/rust/kcl-lib/src/lsp/kcl/mod.rs +++ b/rust/kcl-lib/src/lsp/kcl/mod.rs @@ -1170,7 +1170,7 @@ impl LanguageServer for Backend { Hover::Variable { name, ty: None, range } => Ok(with_cached_var(&name, |value| { let mut text: String = format!("```\n{}", name); if let Some(ty) = value.principal_type() { - text.push_str(&format!(": {}", ty)); + text.push_str(&format!(": {}", ty.human_friendly_type())); } if let Some(v) = value.value_str() { text.push_str(&format!(" = {}", v)); diff --git a/rust/kcl-lib/src/parsing/ast/types/mod.rs b/rust/kcl-lib/src/parsing/ast/types/mod.rs index 7b91b7432..0fd8bba74 100644 --- a/rust/kcl-lib/src/parsing/ast/types/mod.rs +++ b/rust/kcl-lib/src/parsing/ast/types/mod.rs @@ -2937,7 +2937,7 @@ impl fmt::Display for Type { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self { Type::Primitive(primitive_type) => primitive_type.fmt(f), - Type::Array(primitive_type) => write!(f, "{primitive_type}[]"), + Type::Array(primitive_type) => write!(f, "[{primitive_type}]"), Type::Object { properties } => { write!(f, "{{")?; let mut first = true; @@ -3509,7 +3509,7 @@ const cylinder = startSketchOn('-XZ') #[tokio::test(flavor = "multi_thread")] async fn test_parse_type_args_array_on_functions() { - let some_program_string = r#"fn thing = (arg0: number[], arg1: string[], tag?: string) => { + let some_program_string = r#"fn thing = (arg0: [number], arg1: [string], tag?: string) => { return arg0 }"#; let program = crate::parsing::top_level_parse(some_program_string).unwrap(); @@ -3540,7 +3540,7 @@ const cylinder = startSketchOn('-XZ') #[tokio::test(flavor = "multi_thread")] async fn test_parse_type_args_object_on_functions() { - let some_program_string = r#"fn thing = (arg0: number[], arg1: {thing: number, things: string[], more?: string}, tag?: string) => { + let some_program_string = r#"fn thing = (arg0: [number], arg1: {thing: number, things: [string], more?: string}, tag?: string) => { return arg0 }"#; let module_id = ModuleId::default(); @@ -3594,7 +3594,7 @@ const cylinder = startSketchOn('-XZ') 56, module_id, ), - type_: Some(Node::new(Type::Array(PrimitiveType::String), 58, 64, module_id)), + type_: Some(Node::new(Type::Array(PrimitiveType::String), 59, 65, module_id)), default_value: None, labeled: true, digest: None @@ -3625,7 +3625,7 @@ const cylinder = startSketchOn('-XZ') #[tokio::test(flavor = "multi_thread")] async fn test_parse_return_type_on_functions() { - let some_program_string = r#"fn thing(): {thing: number, things: string[], more?: string} { + let some_program_string = r#"fn thing(): {thing: number, things: [string], more?: string} { return 1 }"#; let module_id = ModuleId::default(); @@ -3675,7 +3675,7 @@ const cylinder = startSketchOn('-XZ') 34, module_id, ), - type_: Some(Node::new(Type::Array(PrimitiveType::String), 36, 42, module_id)), + type_: Some(Node::new(Type::Array(PrimitiveType::String), 37, 43, module_id)), default_value: None, labeled: true, digest: None diff --git a/rust/kcl-lib/src/parsing/parser.rs b/rust/kcl-lib/src/parsing/parser.rs index 6ae2482ba..d62e44433 100644 --- a/rust/kcl-lib/src/parsing/parser.rs +++ b/rust/kcl-lib/src/parsing/parser.rs @@ -2651,7 +2651,7 @@ fn argument_type(i: &mut TokenSlice) -> PResult> { )) }), // Array types - (primitive_type, open_bracket, close_bracket).map(|(t, _, _)| Ok(t.map(Type::Array))), + (open_bracket, primitive_type, close_bracket).map(|(_, t, _)| Ok(t.map(Type::Array))), // Primitive types primitive_type.map(|t| Ok(t.map(Type::Primitive))), )) diff --git a/rust/kcl-lib/src/std/appearance.rs b/rust/kcl-lib/src/std/appearance.rs index 642d9280d..288a9e087 100644 --- a/rust/kcl-lib/src/std/appearance.rs +++ b/rust/kcl-lib/src/std/appearance.rs @@ -12,7 +12,10 @@ use validator::Validate; use crate::{ errors::{KclError, KclErrorDetails}, - execution::{ExecState, KclValue, Solid, SolidSet}, + execution::{ + kcl_value::{ArrayLen, RuntimeType}, + ExecState, KclValue, PrimitiveType, Solid, + }, std::Args, }; @@ -38,8 +41,12 @@ struct AppearanceData { } /// Set the appearance of a solid. This only works on solids, not sketches or individual paths. -pub async fn appearance(_exec_state: &mut ExecState, args: Args) -> Result { - let solid_set: SolidSet = args.get_unlabeled_kw_arg("solidSet")?; +pub async fn appearance(exec_state: &mut ExecState, args: Args) -> Result { + let solids = args.get_unlabeled_kw_arg_typed( + "solids", + &RuntimeType::Array(PrimitiveType::Solid, ArrayLen::NonEmpty), + exec_state, + )?; let color: String = args.get_kw_arg("color")?; let metalness: Option = args.get_kw_arg_opt("metalness")?; @@ -66,7 +73,7 @@ pub async fn appearance(_exec_state: &mut ExecState, args: Args) -> Result Result, color: String, metalness: Option, roughness: Option, args: Args, -) -> Result { - let solids: Vec> = solid_set.into(); - +) -> Result, KclError> { for solid in &solids { // Set the material properties. let rgb = rgba_simple::RGB::::from_hex(&color).map_err(|err| { @@ -323,5 +328,5 @@ async fn inner_appearance( // I can't think of a use case for it. } - Ok(SolidSet::from(solids)) + Ok(solids) } diff --git a/rust/kcl-lib/src/std/args.rs b/rust/kcl-lib/src/std/args.rs index e35daad8b..314c3c780 100644 --- a/rust/kcl-lib/src/std/args.rs +++ b/rust/kcl-lib/src/std/args.rs @@ -12,9 +12,9 @@ use serde::{Deserialize, Serialize}; use crate::{ errors::{KclError, KclErrorDetails}, execution::{ - kcl_value::{FunctionSource, NumericType}, - ExecState, ExecutorContext, ExtrudeSurface, Helix, KclObjectFields, KclValue, Metadata, Sketch, SketchSet, - SketchSurface, Solid, SolidSet, TagIdentifier, + kcl_value::{ArrayLen, FunctionSource, NumericType, RuntimeType}, + ExecState, ExecutorContext, ExtrudeSurface, Helix, KclObjectFields, KclValue, Metadata, PrimitiveType, Sketch, + SketchSurface, Solid, TagIdentifier, }, parsing::ast::types::TagNode, source_range::SourceRange, @@ -233,9 +233,41 @@ impl Args { T::from_kcl_val(&arg.value).ok_or_else(|| { let expected_type_name = tynm::type_name::(); let actual_type_name = arg.value.human_friendly_type(); - let msg_base = format!("This function expected the input argument to be of type {expected_type_name} but it's actually of type {actual_type_name}"); - let suggestion = match (expected_type_name.as_str(), actual_type_name) { - ("SolidSet", "Sketch") => Some( + let message = format!("This function expected the input argument to be of type {expected_type_name} but it's actually of type {actual_type_name}"); + KclError::Semantic(KclErrorDetails { + source_ranges: arg.source_ranges(), + message, + }) + }) + } + + /// Get the unlabeled keyword argument. If not set, returns Err. If it + /// can't be converted to the given type, returns Err. + pub(crate) fn get_unlabeled_kw_arg_typed( + &self, + label: &str, + ty: &RuntimeType, + exec_state: &mut ExecState, + ) -> Result + where + T: for<'a> FromKclValue<'a>, + { + let arg = self + .unlabeled_kw_arg_unconverted() + .ok_or(KclError::Semantic(KclErrorDetails { + source_ranges: vec![self.source_range], + message: format!("This function requires a value for the special unlabeled first parameter, '{label}'"), + }))?; + + let arg = arg.value.coerce(ty, exec_state).ok_or_else(|| { + let actual_type_name = arg.value.human_friendly_type(); + let msg_base = format!( + "This function expected the input argument to be {} but it's actually of type {actual_type_name}", + ty.human_friendly_type(), + ); + let suggestion = match (ty, actual_type_name) { + (RuntimeType::Primitive(PrimitiveType::Solid), "Sketch") + | (RuntimeType::Array(PrimitiveType::Solid, _), "Sketch") => Some( "You can convert a sketch (2D) into a Solid (3D) by calling a function like `extrude` or `revolve`", ), _ => None, @@ -248,7 +280,10 @@ impl Args { source_ranges: arg.source_ranges(), message, }) - }) + })?; + + // TODO unnecessary cloning + Ok(T::from_kcl_val(&arg).unwrap()) } // Add a modeling command to the batch but don't fire it right away. @@ -338,10 +373,10 @@ impl Args { /// Flush just the fillets and chamfers for this specific SolidSet. #[allow(clippy::vec_box)] - pub(crate) async fn flush_batch_for_solid_set( + pub(crate) async fn flush_batch_for_solids( &self, exec_state: &mut ExecState, - solids: Vec>, + solids: Vec, ) -> Result<(), KclError> { // Make sure we don't traverse sketches more than once. let mut traversed_sketches = Vec::new(); @@ -510,12 +545,48 @@ impl Args { Ok((a.n, b.n, ty)) } - pub(crate) fn get_sketches(&self) -> Result<(SketchSet, Sketch), KclError> { - FromArgs::from_args(self, 0) + pub(crate) fn get_sketches(&self, exec_state: &mut ExecState) -> Result<(Vec, Sketch), KclError> { + let sarg = self.args[0] + .value + .coerce(&RuntimeType::Array(PrimitiveType::Sketch, ArrayLen::None), exec_state) + .ok_or(KclError::Type(KclErrorDetails { + message: format!( + "Expected an array of sketches, found {}", + self.args[0].value.human_friendly_type() + ), + source_ranges: vec![self.source_range], + }))?; + let sketches = match sarg { + KclValue::HomArray { value, .. } => value.iter().map(|v| v.as_sketch().unwrap().clone()).collect(), + _ => unreachable!(), + }; + let sarg = self.args[1] + .value + .coerce(&RuntimeType::Primitive(PrimitiveType::Sketch), exec_state) + .ok_or(KclError::Type(KclErrorDetails { + message: format!("Expected a sketch, found {}", self.args[1].value.human_friendly_type()), + source_ranges: vec![self.source_range], + }))?; + let sketch = match sarg { + KclValue::Sketch { value } => *value, + _ => unreachable!(), + }; + + Ok((sketches, sketch)) } - pub(crate) fn get_sketch(&self) -> Result { - FromArgs::from_args(self, 0) + pub(crate) fn get_sketch(&self, exec_state: &mut ExecState) -> Result { + let sarg = self.args[0] + .value + .coerce(&RuntimeType::Primitive(PrimitiveType::Sketch), exec_state) + .ok_or(KclError::Type(KclErrorDetails { + message: format!("Expected a sketch, found {}", self.args[0].value.human_friendly_type()), + source_ranges: vec![self.source_range], + }))?; + match sarg { + KclValue::Sketch { value } => Ok(*value), + _ => unreachable!(), + } } pub(crate) fn get_data<'a, T>(&'a self) -> Result @@ -536,18 +607,55 @@ impl Args { FromArgs::from_args(self, 0) } - pub(crate) fn get_data_and_sketch_set<'a, T>(&'a self) -> Result<(T, SketchSet), KclError> + pub(crate) fn get_data_and_sketches<'a, T>( + &'a self, + exec_state: &mut ExecState, + ) -> Result<(T, Vec), KclError> where T: serde::de::DeserializeOwned + FromArgs<'a>, { - FromArgs::from_args(self, 0) + let data: T = FromArgs::from_args(self, 0)?; + let sarg = self.args[1] + .value + .coerce(&RuntimeType::Array(PrimitiveType::Sketch, ArrayLen::None), exec_state) + .ok_or(KclError::Type(KclErrorDetails { + message: format!( + "Expected an array of sketches for second argument, found {}", + self.args[1].value.human_friendly_type() + ), + source_ranges: vec![self.source_range], + }))?; + let sketches = match sarg { + KclValue::HomArray { value, .. } => value.iter().map(|v| v.as_sketch().unwrap().clone()).collect(), + _ => unreachable!(), + }; + Ok((data, sketches)) } - pub(crate) fn get_data_and_sketch_and_tag<'a, T>(&'a self) -> Result<(T, Sketch, Option), KclError> + pub(crate) fn get_data_and_sketch_and_tag<'a, T>( + &'a self, + exec_state: &mut ExecState, + ) -> Result<(T, Sketch, Option), KclError> where T: serde::de::DeserializeOwned + FromKclValue<'a> + Sized, { - FromArgs::from_args(self, 0) + let data: T = FromArgs::from_args(self, 0)?; + let sarg = self.args[1] + .value + .coerce(&RuntimeType::Primitive(PrimitiveType::Sketch), exec_state) + .ok_or(KclError::Type(KclErrorDetails { + message: format!( + "Expected a sketch for second argument, found {}", + self.args[1].value.human_friendly_type() + ), + source_ranges: vec![self.source_range], + }))?; + let sketch = match sarg { + KclValue::Sketch { value } => *value, + _ => unreachable!(), + }; + let tag: Option = FromArgs::from_args(self, 2)?; + Ok((data, sketch, tag)) } pub(crate) fn get_data_and_sketch_surface<'a, T>(&'a self) -> Result<(T, SketchSurface, Option), KclError> @@ -557,11 +665,26 @@ impl Args { FromArgs::from_args(self, 0) } - pub(crate) fn get_data_and_solid<'a, T>(&'a self) -> Result<(T, Box), KclError> + pub(crate) fn get_data_and_solid<'a, T>(&'a self, exec_state: &mut ExecState) -> Result<(T, Box), KclError> where T: serde::de::DeserializeOwned + FromKclValue<'a> + Sized, { - FromArgs::from_args(self, 0) + let data: T = FromArgs::from_args(self, 0)?; + let sarg = self.args[1] + .value + .coerce(&RuntimeType::Primitive(PrimitiveType::Solid), exec_state) + .ok_or(KclError::Type(KclErrorDetails { + message: format!( + "Expected a solid for second argument, found {}", + self.args[1].value.human_friendly_type() + ), + source_ranges: vec![self.source_range], + }))?; + let solid = match sarg { + KclValue::Solid { value } => value, + _ => unreachable!(), + }; + Ok((data, solid)) } pub(crate) fn get_tag_to_number_sketch(&self) -> Result<(TagIdentifier, f64, Sketch), KclError> { @@ -1304,7 +1427,6 @@ impl_from_kcl_for_vec!(crate::execution::EdgeCut); impl_from_kcl_for_vec!(crate::execution::Metadata); impl_from_kcl_for_vec!(super::fillet::EdgeReference); impl_from_kcl_for_vec!(ExtrudeSurface); -impl_from_kcl_for_vec!(Sketch); impl<'a> FromKclValue<'a> for SourceRange { fn from_kcl_val(arg: &'a KclValue) -> Option { @@ -1340,8 +1462,10 @@ impl<'a> FromKclValue<'a> for crate::execution::Solid { impl<'a> FromKclValue<'a> for crate::execution::SolidOrImportedGeometry { fn from_kcl_val(arg: &'a KclValue) -> Option { match arg { - KclValue::Solid { value } => Some(Self::Solid(value.clone())), - KclValue::Solids { value } => Some(Self::SolidSet(value.clone())), + KclValue::Solid { value } => Some(Self::SolidSet(vec![(**value).clone()])), + KclValue::HomArray { value, .. } => Some(Self::SolidSet( + value.iter().map(|v| v.as_solid().unwrap().clone()).collect(), + )), KclValue::ImportedGeometry(value) => Some(Self::ImportedGeometry(Box::new(value.clone()))), _ => None, } @@ -1354,11 +1478,13 @@ impl<'a> FromKclValue<'a> for super::sketch::SketchData { let case1 = crate::execution::Plane::from_kcl_val; let case2 = super::sketch::PlaneData::from_kcl_val; let case3 = crate::execution::Solid::from_kcl_val; + let case4 = >::from_kcl_val; case1(arg) .map(Box::new) .map(Self::Plane) .or_else(|| case2(arg).map(Self::PlaneOrientation)) .or_else(|| case3(arg).map(Box::new).map(Self::Solid)) + .or_else(|| case4(arg).map(|v| Box::new(v[0].clone())).map(Self::Solid)) } } @@ -1531,6 +1657,7 @@ impl<'a> FromKclValue<'a> for TyF64 { } } } + impl<'a> FromKclValue<'a> for Sketch { fn from_kcl_val(arg: &'a KclValue) -> Option { let KclValue::Sketch { value } = arg else { @@ -1548,13 +1675,16 @@ impl<'a> FromKclValue<'a> for Helix { Some(value.as_ref().to_owned()) } } + impl<'a> FromKclValue<'a> for SweepPath { fn from_kcl_val(arg: &'a KclValue) -> Option { let case1 = Sketch::from_kcl_val; - let case2 = Helix::from_kcl_val; + let case2 = >::from_kcl_val; + let case3 = Helix::from_kcl_val; case1(arg) .map(Self::Sketch) - .or_else(|| case2(arg).map(|arg0: Helix| Self::Helix(Box::new(arg0)))) + .or_else(|| case2(arg).map(|arg0: Vec| Self::Sketch(arg0[0].clone()))) + .or_else(|| case3(arg).map(|arg0: Helix| Self::Helix(Box::new(arg0)))) } } impl<'a> FromKclValue<'a> for String { @@ -1582,20 +1712,6 @@ impl<'a> FromKclValue<'a> for bool { } } -impl<'a> FromKclValue<'a> for SketchSet { - fn from_kcl_val(arg: &'a KclValue) -> Option { - match arg { - KclValue::Sketch { value: sketch } => Some(SketchSet::from(sketch.to_owned())), - KclValue::Sketches { value } => Some(SketchSet::from(value.to_owned())), - KclValue::MixedArray { .. } => { - let v: Option> = FromKclValue::from_kcl_val(arg); - Some(SketchSet::Sketches(v?.iter().cloned().map(Box::new).collect())) - } - _ => None, - } - } -} - impl<'a> FromKclValue<'a> for Box { fn from_kcl_val(arg: &'a KclValue) -> Option { let KclValue::Solid { value } = arg else { @@ -1605,15 +1721,27 @@ impl<'a> FromKclValue<'a> for Box { } } -impl<'a> FromKclValue<'a> for &'a FunctionSource { +impl<'a> FromKclValue<'a> for Vec { fn from_kcl_val(arg: &'a KclValue) -> Option { - arg.get_function() + let KclValue::HomArray { value, .. } = arg else { + return None; + }; + value.iter().map(Solid::from_kcl_val).collect() } } -impl<'a> FromKclValue<'a> for SolidSet { +impl<'a> FromKclValue<'a> for Vec { fn from_kcl_val(arg: &'a KclValue) -> Option { - arg.get_solid_set().ok() + let KclValue::HomArray { value, .. } = arg else { + return None; + }; + value.iter().map(Sketch::from_kcl_val).collect() + } +} + +impl<'a> FromKclValue<'a> for &'a FunctionSource { + fn from_kcl_val(arg: &'a KclValue) -> Option { + arg.get_function() } } diff --git a/rust/kcl-lib/src/std/chamfer.rs b/rust/kcl-lib/src/std/chamfer.rs index 86a3b0293..083a00bce 100644 --- a/rust/kcl-lib/src/std/chamfer.rs +++ b/rust/kcl-lib/src/std/chamfer.rs @@ -7,7 +7,10 @@ use kittycad_modeling_cmds as kcmc; use crate::{ errors::{KclError, KclErrorDetails}, - execution::{ChamferSurface, EdgeCut, ExecState, ExtrudeSurface, GeoMeta, KclValue, Solid}, + execution::{ + kcl_value::RuntimeType, ChamferSurface, EdgeCut, ExecState, ExtrudeSurface, GeoMeta, KclValue, PrimitiveType, + Solid, + }, parsing::ast::types::TagNode, std::{fillet::EdgeReference, Args}, }; @@ -16,7 +19,7 @@ pub(crate) const DEFAULT_TOLERANCE: f64 = 0.0000001; /// Create chamfers on tagged paths. pub async fn chamfer(exec_state: &mut ExecState, args: Args) -> Result { - let solid = args.get_unlabeled_kw_arg("solid")?; + let solid = args.get_unlabeled_kw_arg_typed("solid", &RuntimeType::Primitive(PrimitiveType::Solid), exec_state)?; let length = args.get_kw_arg("length")?; let tags = args.kw_arg_array_and_source::("tags")?; let tag = args.get_kw_arg_opt("tag")?; diff --git a/rust/kcl-lib/src/std/extrude.rs b/rust/kcl-lib/src/std/extrude.rs index 4182bccc6..c8315109d 100644 --- a/rust/kcl-lib/src/std/extrude.rs +++ b/rust/kcl-lib/src/std/extrude.rs @@ -19,18 +19,22 @@ use uuid::Uuid; use crate::{ errors::{KclError, KclErrorDetails}, execution::{ - ArtifactId, ExecState, ExtrudeSurface, GeoMeta, KclValue, Path, Sketch, SketchSet, SketchSurface, Solid, - SolidSet, + kcl_value::{ArrayLen, RuntimeType}, + ArtifactId, ExecState, ExtrudeSurface, GeoMeta, KclValue, Path, PrimitiveType, Sketch, SketchSurface, Solid, }, std::Args, }; /// Extrudes by a given amount. pub async fn extrude(exec_state: &mut ExecState, args: Args) -> Result { - let sketch_set = args.get_unlabeled_kw_arg("sketch_set")?; + let sketches = args.get_unlabeled_kw_arg_typed( + "sketches", + &RuntimeType::Array(PrimitiveType::Sketch, ArrayLen::NonEmpty), + exec_state, + )?; let length = args.get_kw_arg("length")?; - let result = inner_extrude(sketch_set, length, exec_state, args).await?; + let result = inner_extrude(sketches, length, exec_state, args).await?; Ok(result.into()) } @@ -90,18 +94,17 @@ pub async fn extrude(exec_state: &mut ExecState, args: Args) -> Result, length: f64, exec_state: &mut ExecState, args: Args, -) -> Result { +) -> Result, KclError> { // Extrude the element(s). - let sketches: Vec = sketch_set.into(); let mut solids = Vec::new(); for sketch in &sketches { let id = exec_state.next_uuid(); @@ -121,7 +124,7 @@ async fn inner_extrude( solids.push(do_post_extrude(sketch.clone(), id.into(), length, exec_state, args.clone()).await?); } - Ok(solids.into()) + Ok(solids) } pub(crate) async fn do_post_extrude( @@ -130,7 +133,7 @@ pub(crate) async fn do_post_extrude( length: f64, exec_state: &mut ExecState, args: Args, -) -> Result, KclError> { +) -> Result { // Bring the object to the front of the scene. // See: https://github.com/KittyCAD/modeling-app/issues/806 args.batch_modeling_cmd( @@ -269,7 +272,7 @@ pub(crate) async fn do_post_extrude( }) .collect(); - Ok(Box::new(Solid { + Ok(Solid { // Ok so you would think that the id would be the id of the solid, // that we passed in to the function, but it's actually the id of the // sketch. @@ -283,7 +286,7 @@ pub(crate) async fn do_post_extrude( start_cap_id, end_cap_id, edge_cuts: vec![], - })) + }) } #[derive(Default)] diff --git a/rust/kcl-lib/src/std/fillet.rs b/rust/kcl-lib/src/std/fillet.rs index 62dbeed0d..84e076876 100644 --- a/rust/kcl-lib/src/std/fillet.rs +++ b/rust/kcl-lib/src/std/fillet.rs @@ -14,7 +14,10 @@ use uuid::Uuid; use crate::{ errors::{KclError, KclErrorDetails}, - execution::{EdgeCut, ExecState, ExtrudeSurface, FilletSurface, GeoMeta, KclValue, Solid, TagIdentifier}, + execution::{ + kcl_value::RuntimeType, EdgeCut, ExecState, ExtrudeSurface, FilletSurface, GeoMeta, KclValue, PrimitiveType, + Solid, TagIdentifier, + }, parsing::ast::types::TagNode, settings::types::UnitLength, std::Args, @@ -64,8 +67,7 @@ pub(super) fn validate_unique(tags: &[(T, SourceRange)] /// Create fillets on tagged paths. pub async fn fillet(exec_state: &mut ExecState, args: Args) -> Result { - // Get all args: - let solid = args.get_unlabeled_kw_arg("solid")?; + let solid = args.get_unlabeled_kw_arg_typed("solid", &RuntimeType::Primitive(PrimitiveType::Solid), exec_state)?; let radius = args.get_kw_arg("radius")?; let tolerance = args.get_kw_arg_opt("tolerance")?; let tags = args.kw_arg_array_and_source::("tags")?; diff --git a/rust/kcl-lib/src/std/helix.rs b/rust/kcl-lib/src/std/helix.rs index 73bfdf5f8..57bbe6418 100644 --- a/rust/kcl-lib/src/std/helix.rs +++ b/rust/kcl-lib/src/std/helix.rs @@ -196,7 +196,7 @@ pub struct HelixRevolutionsData { /// Create a helix on a cylinder. pub async fn helix_revolutions(exec_state: &mut ExecState, args: Args) -> Result { - let (data, solid): (HelixRevolutionsData, Box) = args.get_data_and_solid()?; + let (data, solid): (HelixRevolutionsData, Box) = args.get_data_and_solid(exec_state)?; let value = inner_helix_revolutions(data, solid, exec_state, args).await?; Ok(KclValue::Solid { value }) diff --git a/rust/kcl-lib/src/std/loft.rs b/rust/kcl-lib/src/std/loft.rs index d31ca6873..b4d5f904e 100644 --- a/rust/kcl-lib/src/std/loft.rs +++ b/rust/kcl-lib/src/std/loft.rs @@ -9,7 +9,10 @@ use kittycad_modeling_cmds as kcmc; use crate::{ errors::{KclError, KclErrorDetails}, - execution::{ExecState, KclValue, Sketch, Solid}, + execution::{ + kcl_value::{ArrayLen, RuntimeType}, + ExecState, KclValue, PrimitiveType, Sketch, Solid, + }, std::{extrude::do_post_extrude, fillet::default_tolerance, Args}, }; @@ -17,7 +20,11 @@ const DEFAULT_V_DEGREE: u32 = 2; /// Create a 3D surface or solid by interpolating between two or more sketches. pub async fn loft(exec_state: &mut ExecState, args: Args) -> Result { - let sketches = args.get_unlabeled_kw_arg("sketches")?; + let sketches = args.get_unlabeled_kw_arg_typed( + "sketches", + &RuntimeType::Array(PrimitiveType::Sketch, ArrayLen::NonEmpty), + exec_state, + )?; let v_degree: NonZeroU32 = args .get_kw_arg_opt("vDegree")? .unwrap_or(NonZeroU32::new(DEFAULT_V_DEGREE).unwrap()); @@ -159,5 +166,7 @@ async fn inner_loft( let mut sketch = sketches[0].clone(); // Override its id with the loft id so we can get its faces later sketch.id = id; - do_post_extrude(sketch, id.into(), 0.0, exec_state, args).await + Ok(Box::new( + do_post_extrude(sketch, id.into(), 0.0, exec_state, args).await?, + )) } diff --git a/rust/kcl-lib/src/std/mirror.rs b/rust/kcl-lib/src/std/mirror.rs index d65d1a2e4..d9f58eeb5 100644 --- a/rust/kcl-lib/src/std/mirror.rs +++ b/rust/kcl-lib/src/std/mirror.rs @@ -9,7 +9,7 @@ use serde::{Deserialize, Serialize}; use crate::{ errors::KclError, - execution::{ExecState, KclValue, Sketch, SketchSet}, + execution::{ExecState, KclValue, Sketch}, std::{axis_or_reference::Axis2dOrEdgeReference, Args}, }; @@ -26,7 +26,7 @@ pub struct Mirror2dData { /// /// Only works on unclosed sketches for now. pub async fn mirror_2d(exec_state: &mut ExecState, args: Args) -> Result { - let (data, sketch_set): (Mirror2dData, SketchSet) = args.get_data_and_sketch_set()?; + let (data, sketch_set): (Mirror2dData, Vec) = args.get_data_and_sketches(exec_state)?; let sketches = inner_mirror_2d(data, sketch_set, exec_state, args).await?; Ok(sketches.into()) @@ -103,14 +103,11 @@ pub async fn mirror_2d(exec_state: &mut ExecState, args: Args) -> Result, exec_state: &mut ExecState, args: Args, -) -> Result>, KclError> { - let starting_sketches = match sketch_set { - SketchSet::Sketch(sketch) => vec![sketch], - SketchSet::Sketches(sketches) => sketches, - }; +) -> Result, KclError> { + let starting_sketches = sketches; if args.ctx.no_engine_commands().await { return Ok(starting_sketches); diff --git a/rust/kcl-lib/src/std/patterns.rs b/rust/kcl-lib/src/std/patterns.rs index 473e49317..d591b4aad 100644 --- a/rust/kcl-lib/src/std/patterns.rs +++ b/rust/kcl-lib/src/std/patterns.rs @@ -20,9 +20,8 @@ use super::args::Arg; use crate::{ errors::{KclError, KclErrorDetails}, execution::{ - kcl_value::{FunctionSource, NumericType}, - ExecState, Geometries, Geometry, KclObjectFields, KclValue, Point2d, Point3d, Sketch, SketchSet, Solid, - SolidSet, + kcl_value::{ArrayLen, FunctionSource, NumericType, RuntimeType}, + ExecState, Geometries, Geometry, KclObjectFields, KclValue, Point2d, Point3d, PrimitiveType, Sketch, Solid, }, std::Args, ExecutorContext, SourceRange, @@ -48,25 +47,32 @@ pub struct LinearPattern3dData { /// Repeat some 3D solid, changing each repetition slightly. pub async fn pattern_transform(exec_state: &mut ExecState, args: Args) -> Result { - let solid_set = args.get_unlabeled_kw_arg("solidSet")?; + let solids = args.get_unlabeled_kw_arg_typed( + "solids", + &RuntimeType::Array(PrimitiveType::Solid, ArrayLen::NonEmpty), + exec_state, + )?; let instances: u32 = args.get_kw_arg("instances")?; let transform: &FunctionSource = args.get_kw_arg("transform")?; let use_original: Option = args.get_kw_arg_opt("useOriginal")?; - let solids = inner_pattern_transform(solid_set, instances, transform, use_original, exec_state, &args).await?; - Ok(KclValue::Solids { value: solids }) + let solids = inner_pattern_transform(solids, instances, transform, use_original, exec_state, &args).await?; + Ok(solids.into()) } /// Repeat some 2D sketch, changing each repetition slightly. pub async fn pattern_transform_2d(exec_state: &mut ExecState, args: Args) -> Result { - let sketch_set = args.get_unlabeled_kw_arg("sketchSet")?; + let sketches = args.get_unlabeled_kw_arg_typed( + "sketches", + &RuntimeType::Array(PrimitiveType::Sketch, ArrayLen::NonEmpty), + exec_state, + )?; let instances: u32 = args.get_kw_arg("instances")?; let transform: &FunctionSource = args.get_kw_arg("transform")?; let use_original: Option = args.get_kw_arg_opt("useOriginal")?; - let sketches = - inner_pattern_transform_2d(sketch_set, instances, transform, use_original, exec_state, &args).await?; - Ok(KclValue::Sketches { value: sketches }) + let sketches = inner_pattern_transform_2d(sketches, instances, transform, use_original, exec_state, &args).await?; + Ok(sketches.into()) } /// Repeat a 3-dimensional solid, changing it each time. @@ -258,20 +264,20 @@ pub async fn pattern_transform_2d(exec_state: &mut ExecState, args: Args) -> Res keywords = true, unlabeled_first = true, args = { - solid_set = { docs = "The solid(s) to duplicate" }, + solids = { docs = "The solid(s) to duplicate" }, instances = { docs = "The number of total instances. Must be greater than or equal to 1. This includes the original entity. For example, if instances is 2, there will be two copies -- the original, and one new copy. If instances is 1, this has no effect." }, transform = { docs = "How each replica should be transformed. The transform function takes a single parameter: an integer representing which number replication the transform is for. E.g. the first replica to be transformed will be passed the argument `1`. This simplifies your math: the transform function can rely on id `0` being the original instance passed into the `patternTransform`. See the examples." }, use_original = { docs = "If the target was sketched on an extrusion, setting this will use the original sketch as the target, not the entire joined solid. Defaults to false." }, } }] async fn inner_pattern_transform<'a>( - solid_set: SolidSet, + solids: Vec, instances: u32, transform: &'a FunctionSource, use_original: Option, exec_state: &mut ExecState, args: &'a Args, -) -> Result>, KclError> { +) -> Result, KclError> { // Build the vec of transforms, one for each repetition. let mut transform_vec = Vec::with_capacity(usize::try_from(instances).unwrap()); if instances < 1 { @@ -281,12 +287,12 @@ async fn inner_pattern_transform<'a>( })); } for i in 1..instances { - let t = make_transform::>(i, transform, args.source_range, exec_state, &args.ctx).await?; + let t = make_transform::(i, transform, args.source_range, exec_state, &args.ctx).await?; transform_vec.push(t); } execute_pattern_transform( transform_vec, - solid_set, + solids, use_original.unwrap_or_default(), exec_state, args, @@ -311,20 +317,20 @@ async fn inner_pattern_transform<'a>( keywords = true, unlabeled_first = true, args = { - sketch_set = { docs = "The sketch(es) to duplicate" }, + sketches = { docs = "The sketch(es) to duplicate" }, instances = { docs = "The number of total instances. Must be greater than or equal to 1. This includes the original entity. For example, if instances is 2, there will be two copies -- the original, and one new copy. If instances is 1, this has no effect." }, transform = { docs = "How each replica should be transformed. The transform function takes a single parameter: an integer representing which number replication the transform is for. E.g. the first replica to be transformed will be passed the argument `1`. This simplifies your math: the transform function can rely on id `0` being the original instance passed into the `patternTransform`. See the examples." }, use_original = { docs = "If the target was sketched on an extrusion, setting this will use the original sketch as the target, not the entire joined solid. Defaults to false." }, } }] async fn inner_pattern_transform_2d<'a>( - sketch_set: SketchSet, + sketches: Vec, instances: u32, transform: &'a FunctionSource, use_original: Option, exec_state: &mut ExecState, args: &'a Args, -) -> Result>, KclError> { +) -> Result, KclError> { // Build the vec of transforms, one for each repetition. let mut transform_vec = Vec::with_capacity(usize::try_from(instances).unwrap()); if instances < 1 { @@ -334,12 +340,12 @@ async fn inner_pattern_transform_2d<'a>( })); } for i in 1..instances { - let t = make_transform::>(i, transform, args.source_range, exec_state, &args.ctx).await?; + let t = make_transform::(i, transform, args.source_range, exec_state, &args.ctx).await?; transform_vec.push(t); } execute_pattern_transform( transform_vec, - sketch_set, + sketches, use_original.unwrap_or_default(), exec_state, args, @@ -611,8 +617,8 @@ trait GeometryTrait: Clone { async fn flush_batch(args: &Args, exec_state: &mut ExecState, set: Self::Set) -> Result<(), KclError>; } -impl GeometryTrait for Box { - type Set = SketchSet; +impl GeometryTrait for Sketch { + type Set = Vec; fn set_id(&mut self, id: Uuid) { self.id = id; } @@ -632,8 +638,8 @@ impl GeometryTrait for Box { } } -impl GeometryTrait for Box { - type Set = SolidSet; +impl GeometryTrait for Solid { + type Set = Vec; fn set_id(&mut self, id: Uuid) { self.id = id; } @@ -651,7 +657,7 @@ impl GeometryTrait for Box { } async fn flush_batch(args: &Args, exec_state: &mut ExecState, solid_set: Self::Set) -> Result<(), KclError> { - args.flush_batch_for_solid_set(exec_state, solid_set.into()).await + args.flush_batch_for_solids(exec_state, solid_set).await } } @@ -690,7 +696,11 @@ mod tests { /// A linear pattern on a 2D sketch. pub async fn pattern_linear_2d(exec_state: &mut ExecState, args: Args) -> Result { - let sketch_set: SketchSet = args.get_unlabeled_kw_arg("sketchSet")?; + let sketches = args.get_unlabeled_kw_arg_typed( + "sketches", + &RuntimeType::Array(PrimitiveType::Sketch, ArrayLen::NonEmpty), + exec_state, + )?; let instances: u32 = args.get_kw_arg("instances")?; let distance: f64 = args.get_kw_arg("distance")?; let axis: [f64; 2] = args.get_kw_arg("axis")?; @@ -705,8 +715,7 @@ pub async fn pattern_linear_2d(exec_state: &mut ExecState, args: Args) -> Result })); } - let sketches = - inner_pattern_linear_2d(sketch_set, instances, distance, axis, use_original, exec_state, args).await?; + let sketches = inner_pattern_linear_2d(sketches, instances, distance, axis, use_original, exec_state, args).await?; Ok(sketches.into()) } @@ -729,7 +738,7 @@ pub async fn pattern_linear_2d(exec_state: &mut ExecState, args: Args) -> Result keywords = true, unlabeled_first = true, args = { - sketch_set = { docs = "The sketch(es) to duplicate" }, + sketches = { docs = "The sketch(es) to duplicate" }, instances = { docs = "The number of total instances. Must be greater than or equal to 1. This includes the original entity. For example, if instances is 2, there will be two copies -- the original, and one new copy. If instances is 1, this has no effect." }, distance = { docs = "Distance between each repetition. Also known as 'spacing'."}, axis = { docs = "The axis of the pattern. A 2D vector." }, @@ -737,14 +746,14 @@ pub async fn pattern_linear_2d(exec_state: &mut ExecState, args: Args) -> Result } }] async fn inner_pattern_linear_2d( - sketch_set: SketchSet, + sketches: Vec, instances: u32, distance: f64, axis: [f64; 2], use_original: Option, exec_state: &mut ExecState, args: Args, -) -> Result>, KclError> { +) -> Result, KclError> { let [x, y] = axis; let axis_len = f64::sqrt(x * x + y * y); let normalized_axis = kcmc::shared::Point2d::from([x / axis_len, y / axis_len]); @@ -760,7 +769,7 @@ async fn inner_pattern_linear_2d( .collect(); execute_pattern_transform( transforms, - sketch_set, + sketches, use_original.unwrap_or_default(), exec_state, &args, @@ -770,7 +779,11 @@ async fn inner_pattern_linear_2d( /// A linear pattern on a 3D model. pub async fn pattern_linear_3d(exec_state: &mut ExecState, args: Args) -> Result { - let solid_set: SolidSet = args.get_unlabeled_kw_arg("solidSet")?; + let solids = args.get_unlabeled_kw_arg_typed( + "solids", + &RuntimeType::Array(PrimitiveType::Solid, ArrayLen::NonEmpty), + exec_state, + )?; let instances: u32 = args.get_kw_arg("instances")?; let distance: f64 = args.get_kw_arg("distance")?; let axis: [f64; 3] = args.get_kw_arg("axis")?; @@ -785,7 +798,7 @@ pub async fn pattern_linear_3d(exec_state: &mut ExecState, args: Args) -> Result })); } - let solids = inner_pattern_linear_3d(solid_set, instances, distance, axis, use_original, exec_state, args).await?; + let solids = inner_pattern_linear_3d(solids, instances, distance, axis, use_original, exec_state, args).await?; Ok(solids.into()) } @@ -866,7 +879,7 @@ pub async fn pattern_linear_3d(exec_state: &mut ExecState, args: Args) -> Result keywords = true, unlabeled_first = true, args = { - solid_set = { docs = "The solid(s) to duplicate" }, + solids = { docs = "The solid(s) to duplicate" }, instances = { docs = "The number of total instances. Must be greater than or equal to 1. This includes the original entity. For example, if instances is 2, there will be two copies -- the original, and one new copy. If instances is 1, this has no effect." }, distance = { docs = "Distance between each repetition. Also known as 'spacing'."}, axis = { docs = "The axis of the pattern. A 2D vector." }, @@ -874,14 +887,14 @@ pub async fn pattern_linear_3d(exec_state: &mut ExecState, args: Args) -> Result } }] async fn inner_pattern_linear_3d( - solid_set: SolidSet, + solids: Vec, instances: u32, distance: f64, axis: [f64; 3], use_original: Option, exec_state: &mut ExecState, args: Args, -) -> Result>, KclError> { +) -> Result, KclError> { let [x, y, z] = axis; let axis_len = f64::sqrt(x * x + y * y + z * z); let normalized_axis = kcmc::shared::Point3d::from([x / axis_len, y / axis_len, z / axis_len]); @@ -895,14 +908,7 @@ async fn inner_pattern_linear_3d( }] }) .collect(); - execute_pattern_transform( - transforms, - solid_set, - use_original.unwrap_or_default(), - exec_state, - &args, - ) - .await + execute_pattern_transform(transforms, solids, use_original.unwrap_or_default(), exec_state, &args).await } /// Data for a circular pattern on a 2D sketch. @@ -1022,7 +1028,11 @@ impl CircularPattern { /// A circular pattern on a 2D sketch. pub async fn pattern_circular_2d(exec_state: &mut ExecState, args: Args) -> Result { - let sketch_set: SketchSet = args.get_unlabeled_kw_arg("sketchSet")?; + let sketches = args.get_unlabeled_kw_arg_typed( + "sketches", + &RuntimeType::Array(PrimitiveType::Sketch, ArrayLen::NonEmpty), + exec_state, + )?; let instances: u32 = args.get_kw_arg("instances")?; let center: [f64; 2] = args.get_kw_arg("center")?; let arc_degrees: f64 = args.get_kw_arg("arcDegrees")?; @@ -1030,7 +1040,7 @@ pub async fn pattern_circular_2d(exec_state: &mut ExecState, args: Args) -> Resu let use_original: Option = args.get_kw_arg_opt("useOriginal")?; let sketches = inner_pattern_circular_2d( - sketch_set, + sketches, instances, center, arc_degrees, @@ -1079,7 +1089,7 @@ pub async fn pattern_circular_2d(exec_state: &mut ExecState, args: Args) -> Resu }] #[allow(clippy::too_many_arguments)] async fn inner_pattern_circular_2d( - sketch_set: SketchSet, + sketch_set: Vec, instances: u32, center: [f64; 2], arc_degrees: f64, @@ -1087,8 +1097,8 @@ async fn inner_pattern_circular_2d( use_original: Option, exec_state: &mut ExecState, args: Args, -) -> Result>, KclError> { - let starting_sketches: Vec> = sketch_set.into(); +) -> Result, KclError> { + let starting_sketches = sketch_set; if args.ctx.context_type == crate::execution::ContextType::Mock { return Ok(starting_sketches); @@ -1126,7 +1136,11 @@ async fn inner_pattern_circular_2d( /// A circular pattern on a 3D model. pub async fn pattern_circular_3d(exec_state: &mut ExecState, args: Args) -> Result { - let solid_set: SolidSet = args.get_unlabeled_kw_arg("solidSet")?; + let solids = args.get_unlabeled_kw_arg_typed( + "solids", + &RuntimeType::Array(PrimitiveType::Solid, ArrayLen::NonEmpty), + exec_state, + )?; // The number of total instances. Must be greater than or equal to 1. // This includes the original entity. For example, if instances is 2, // there will be two copies -- the original, and one new copy. @@ -1145,7 +1159,7 @@ pub async fn pattern_circular_3d(exec_state: &mut ExecState, args: Args) -> Resu let use_original: Option = args.get_kw_arg_opt("useOriginal")?; let solids = inner_pattern_circular_3d( - solid_set, + solids, instances, axis, center, @@ -1183,7 +1197,7 @@ pub async fn pattern_circular_3d(exec_state: &mut ExecState, args: Args) -> Resu keywords = true, unlabeled_first = true, args = { - solid_set = { docs = "Which solid(s) to pattern" }, + solids = { docs = "Which solid(s) to pattern" }, instances = { docs = "The number of total instances. Must be greater than or equal to 1. This includes the original entity. For example, if instances is 2, there will be two copies -- the original, and one new copy. If instances is 1, this has no effect."}, axis = { docs = "The axis around which to make the pattern. This is a 3D vector"}, center = { docs = "The center about which to make the pattern. This is a 3D vector."}, @@ -1194,7 +1208,7 @@ pub async fn pattern_circular_3d(exec_state: &mut ExecState, args: Args) -> Resu }] #[allow(clippy::too_many_arguments)] async fn inner_pattern_circular_3d( - solid_set: SolidSet, + solids: Vec, instances: u32, axis: [f64; 3], center: [f64; 3], @@ -1203,14 +1217,13 @@ async fn inner_pattern_circular_3d( use_original: Option, exec_state: &mut ExecState, args: Args, -) -> Result>, KclError> { +) -> Result, KclError> { // Flush the batch for our fillets/chamfers if there are any. // If we do not flush these, then you won't be able to pattern something with fillets. // Flush just the fillets/chamfers that apply to these solids. - args.flush_batch_for_solid_set(exec_state, solid_set.clone().into()) - .await?; + args.flush_batch_for_solids(exec_state, solids.clone()).await?; - let starting_solids: Vec> = solid_set.into(); + let starting_solids = solids; if args.ctx.context_type == crate::execution::ContextType::Mock { return Ok(starting_solids); diff --git a/rust/kcl-lib/src/std/revolve.rs b/rust/kcl-lib/src/std/revolve.rs index aba2782cc..e0109da0e 100644 --- a/rust/kcl-lib/src/std/revolve.rs +++ b/rust/kcl-lib/src/std/revolve.rs @@ -9,7 +9,7 @@ use serde::{Deserialize, Serialize}; use crate::{ errors::{KclError, KclErrorDetails}, - execution::{ExecState, KclValue, Sketch, SketchSet, SolidSet}, + execution::{ExecState, KclValue, Sketch, Solid}, std::{axis_or_reference::Axis2dOrEdgeReference, extrude::do_post_extrude, fillet::default_tolerance, Args}, }; @@ -30,9 +30,9 @@ pub struct RevolveData { /// Revolve a sketch or set of sketches around an axis. pub async fn revolve(exec_state: &mut ExecState, args: Args) -> Result { - let (data, sketch_set): (RevolveData, SketchSet) = args.get_data_and_sketch_set()?; + let (data, sketches): (RevolveData, _) = args.get_data_and_sketches(exec_state)?; - let value = inner_revolve(data, sketch_set, exec_state, args).await?; + let value = inner_revolve(data, sketches, exec_state, args).await?; Ok(value.into()) } @@ -206,10 +206,10 @@ pub async fn revolve(exec_state: &mut ExecState, args: Args) -> Result, exec_state: &mut ExecState, args: Args, -) -> Result { +) -> Result, KclError> { if let Some(angle) = data.angle { // Return an error if the angle is zero. // We don't use validate() here because we want to return a specific error message that is @@ -224,7 +224,6 @@ async fn inner_revolve( let angle = Angle::from_degrees(data.angle.unwrap_or(360.0)); - let sketches: Vec = sketch_set.into(); let mut solids = Vec::new(); for sketch in &sketches { let id = exec_state.next_uuid(); @@ -263,5 +262,5 @@ async fn inner_revolve( solids.push(do_post_extrude(sketch.clone(), id.into(), 0.0, exec_state, args.clone()).await?); } - Ok(solids.into()) + Ok(solids) } diff --git a/rust/kcl-lib/src/std/segment.rs b/rust/kcl-lib/src/std/segment.rs index fdf65c21b..1f5be0898 100644 --- a/rust/kcl-lib/src/std/segment.rs +++ b/rust/kcl-lib/src/std/segment.rs @@ -6,7 +6,7 @@ use kittycad_modeling_cmds::shared::Angle; use crate::{ errors::{KclError, KclErrorDetails}, - execution::{ExecState, KclValue, Point2d, Sketch, TagIdentifier}, + execution::{kcl_value::RuntimeType, ExecState, KclValue, Point2d, PrimitiveType, Sketch, TagIdentifier}, std::{utils::between, Args}, }; @@ -282,8 +282,9 @@ fn inner_segment_start_y(tag: &TagIdentifier, exec_state: &mut ExecState, args: Ok(path.get_from()[1]) } /// Returns the last segment of x. -pub async fn last_segment_x(_exec_state: &mut ExecState, args: Args) -> Result { - let sketch = args.get_unlabeled_kw_arg("sketch")?; +pub async fn last_segment_x(exec_state: &mut ExecState, args: Args) -> Result { + let sketch = + args.get_unlabeled_kw_arg_typed("sketch", &RuntimeType::Primitive(PrimitiveType::Sketch), exec_state)?; let result = inner_last_segment_x(sketch, args.clone())?; Ok(args.make_user_val_from_f64(result)) @@ -327,8 +328,9 @@ fn inner_last_segment_x(sketch: Sketch, args: Args) -> Result { } /// Returns the last segment of y. -pub async fn last_segment_y(_exec_state: &mut ExecState, args: Args) -> Result { - let sketch = args.get_unlabeled_kw_arg("sketch")?; +pub async fn last_segment_y(exec_state: &mut ExecState, args: Args) -> Result { + let sketch = + args.get_unlabeled_kw_arg_typed("sketch", &RuntimeType::Primitive(PrimitiveType::Sketch), exec_state)?; let result = inner_last_segment_y(sketch, args.clone())?; Ok(args.make_user_val_from_f64(result)) diff --git a/rust/kcl-lib/src/std/shell.rs b/rust/kcl-lib/src/std/shell.rs index 772e5a2a4..e5211ad14 100644 --- a/rust/kcl-lib/src/std/shell.rs +++ b/rust/kcl-lib/src/std/shell.rs @@ -7,17 +7,24 @@ use kittycad_modeling_cmds as kcmc; use crate::{ errors::{KclError, KclErrorDetails}, - execution::{ExecState, KclValue, Solid, SolidSet}, + execution::{ + kcl_value::{ArrayLen, RuntimeType}, + ExecState, KclValue, PrimitiveType, Solid, + }, std::{sketch::FaceTag, Args}, }; /// Create a shell. pub async fn shell(exec_state: &mut ExecState, args: Args) -> Result { - let solid_set = args.get_unlabeled_kw_arg("solidSet")?; + let solids = args.get_unlabeled_kw_arg_typed( + "solids", + &RuntimeType::Array(PrimitiveType::Solid, ArrayLen::NonEmpty), + exec_state, + )?; let thickness = args.get_kw_arg("thickness")?; let faces = args.get_kw_arg("faces")?; - let result = inner_shell(solid_set, thickness, faces, exec_state, args).await?; + let result = inner_shell(solids, thickness, faces, exec_state, args).await?; Ok(result.into()) } @@ -173,18 +180,18 @@ pub async fn shell(exec_state: &mut ExecState, args: Args) -> Result, thickness: f64, faces: Vec, exec_state: &mut ExecState, args: Args, -) -> Result { +) -> Result, KclError> { if faces.is_empty() { return Err(KclError::Type(KclErrorDetails { message: "You must shell at least one face".to_string(), @@ -192,7 +199,6 @@ async fn inner_shell( })); } - let solids: Vec> = solid_set.clone().into(); if solids.is_empty() { return Err(KclError::Type(KclErrorDetails { message: "You must shell at least one solid".to_string(), @@ -204,7 +210,7 @@ async fn inner_shell( for solid in &solids { // Flush the batch for our fillets/chamfers if there are any. // If we do not do these for sketch on face, things will fail with face does not exist. - args.flush_batch_for_solid_set(exec_state, solid.clone().into()).await?; + args.flush_batch_for_solids(exec_state, vec![solid.clone()]).await?; for tag in &faces { let extrude_plane_id = tag.get_face_id(solid, exec_state, &args, false).await?; @@ -241,12 +247,12 @@ async fn inner_shell( ) .await?; - Ok(solid_set) + Ok(solids) } /// Make the inside of a 3D object hollow. pub async fn hollow(exec_state: &mut ExecState, args: Args) -> Result { - let (thickness, solid): (f64, Box) = args.get_data_and_solid()?; + let (thickness, solid): (f64, Box) = args.get_data_and_solid(exec_state)?; let value = inner_hollow(thickness, solid, exec_state, args).await?; Ok(KclValue::Solid { value }) @@ -314,7 +320,7 @@ async fn inner_hollow( ) -> Result, KclError> { // Flush the batch for our fillets/chamfers if there are any. // If we do not do these for sketch on face, things will fail with face does not exist. - args.flush_batch_for_solid_set(exec_state, solid.clone().into()).await?; + args.flush_batch_for_solids(exec_state, vec![(*solid).clone()]).await?; args.batch_modeling_cmd( exec_state.next_uuid(), diff --git a/rust/kcl-lib/src/std/sketch.rs b/rust/kcl-lib/src/std/sketch.rs index 1c43f44c0..2ad7ba2b5 100644 --- a/rust/kcl-lib/src/std/sketch.rs +++ b/rust/kcl-lib/src/std/sketch.rs @@ -11,11 +11,13 @@ use parse_display::{Display, FromStr}; use schemars::JsonSchema; use serde::{Deserialize, Serialize}; +use crate::execution::kcl_value::RuntimeType; +use crate::execution::PrimitiveType; use crate::{ errors::{KclError, KclErrorDetails}, execution::{ Artifact, ArtifactId, BasePath, CodeRef, ExecState, Face, GeoMeta, KclValue, Path, Plane, Point2d, Point3d, - Sketch, SketchSet, SketchSurface, Solid, StartSketchOnFace, StartSketchOnPlane, TagEngineInfo, TagIdentifier, + Sketch, SketchSurface, Solid, StartSketchOnFace, StartSketchOnPlane, TagEngineInfo, TagIdentifier, }, parsing::ast::types::TagNode, std::{ @@ -96,7 +98,8 @@ pub const NEW_TAG_KW: &str = "tag"; /// Draw a line to a point. pub async fn line(exec_state: &mut ExecState, args: Args) -> Result { // let (to, sketch, tag): ([f64; 2], Sketch, Option) = args.get_data_and_sketch_and_tag()?; - let sketch = args.get_unlabeled_kw_arg("sketch")?; + let sketch = + args.get_unlabeled_kw_arg_typed("sketch", &RuntimeType::Primitive(PrimitiveType::Sketch), exec_state)?; let end = args.get_kw_arg_opt("end")?; let end_absolute = args.get_kw_arg_opt("endAbsolute")?; let tag = args.get_kw_arg_opt(NEW_TAG_KW)?; @@ -263,7 +266,8 @@ async fn straight_line( /// Draw a line on the x-axis. pub async fn x_line(exec_state: &mut ExecState, args: Args) -> Result { - let sketch = args.get_unlabeled_kw_arg("sketch")?; + let sketch = + args.get_unlabeled_kw_arg_typed("sketch", &RuntimeType::Primitive(PrimitiveType::Sketch), exec_state)?; let length = args.get_kw_arg_opt("length")?; let end_absolute = args.get_kw_arg_opt("endAbsolute")?; let tag = args.get_kw_arg_opt(NEW_TAG_KW)?; @@ -331,7 +335,8 @@ async fn inner_x_line( /// Draw a line on the y-axis. pub async fn y_line(exec_state: &mut ExecState, args: Args) -> Result { - let sketch = args.get_unlabeled_kw_arg("sketch")?; + let sketch = + args.get_unlabeled_kw_arg_typed("sketch", &RuntimeType::Primitive(PrimitiveType::Sketch), exec_state)?; let length = args.get_kw_arg_opt("length")?; let end_absolute = args.get_kw_arg_opt("endAbsolute")?; let tag = args.get_kw_arg_opt(NEW_TAG_KW)?; @@ -410,7 +415,8 @@ pub enum AngledLineData { /// Draw an angled line. pub async fn angled_line(exec_state: &mut ExecState, args: Args) -> Result { - let (data, sketch, tag): (AngledLineData, Sketch, Option) = args.get_data_and_sketch_and_tag()?; + let (data, sketch, tag): (AngledLineData, Sketch, Option) = + args.get_data_and_sketch_and_tag(exec_state)?; let new_sketch = inner_angled_line(data, sketch, tag, exec_state, args).await?; Ok(KclValue::Sketch { @@ -498,7 +504,8 @@ async fn inner_angled_line( /// Draw an angled line of a given x length. pub async fn angled_line_of_x_length(exec_state: &mut ExecState, args: Args) -> Result { - let (data, sketch, tag): (AngledLineData, Sketch, Option) = args.get_data_and_sketch_and_tag()?; + let (data, sketch, tag): (AngledLineData, Sketch, Option) = + args.get_data_and_sketch_and_tag(exec_state)?; let new_sketch = inner_angled_line_of_x_length(data, sketch, tag, exec_state, args).await?; Ok(KclValue::Sketch { @@ -568,7 +575,8 @@ pub struct AngledLineToData { /// Draw an angled line to a given x coordinate. pub async fn angled_line_to_x(exec_state: &mut ExecState, args: Args) -> Result { - let (data, sketch, tag): (AngledLineToData, Sketch, Option) = args.get_data_and_sketch_and_tag()?; + let (data, sketch, tag): (AngledLineToData, Sketch, Option) = + args.get_data_and_sketch_and_tag(exec_state)?; let new_sketch = inner_angled_line_to_x(data, sketch, tag, exec_state, args).await?; Ok(KclValue::Sketch { @@ -632,7 +640,8 @@ async fn inner_angled_line_to_x( /// Draw an angled line of a given y length. pub async fn angled_line_of_y_length(exec_state: &mut ExecState, args: Args) -> Result { - let (data, sketch, tag): (AngledLineData, Sketch, Option) = args.get_data_and_sketch_and_tag()?; + let (data, sketch, tag): (AngledLineData, Sketch, Option) = + args.get_data_and_sketch_and_tag(exec_state)?; let new_sketch = inner_angled_line_of_y_length(data, sketch, tag, exec_state, args).await?; @@ -694,7 +703,8 @@ async fn inner_angled_line_of_y_length( /// Draw an angled line to a given y coordinate. pub async fn angled_line_to_y(exec_state: &mut ExecState, args: Args) -> Result { - let (data, sketch, tag): (AngledLineToData, Sketch, Option) = args.get_data_and_sketch_and_tag()?; + let (data, sketch, tag): (AngledLineToData, Sketch, Option) = + args.get_data_and_sketch_and_tag(exec_state)?; let new_sketch = inner_angled_line_to_y(data, sketch, tag, exec_state, args).await?; Ok(KclValue::Sketch { @@ -773,7 +783,7 @@ pub struct AngledLineThatIntersectsData { /// Draw an angled line that intersects with a given line. pub async fn angled_line_that_intersects(exec_state: &mut ExecState, args: Args) -> Result { let (data, sketch, tag): (AngledLineThatIntersectsData, Sketch, Option) = - args.get_data_and_sketch_and_tag()?; + args.get_data_and_sketch_and_tag(exec_state)?; let new_sketch = inner_angled_line_that_intersects(data, sketch, tag, exec_state, args).await?; Ok(KclValue::Sketch { value: Box::new(new_sketch), @@ -1202,7 +1212,7 @@ pub(crate) async fn inner_start_profile_at( SketchSurface::Face(face) => { // Flush the batch for our fillets/chamfers if there are any. // If we do not do these for sketch on face, things will fail with face does not exist. - args.flush_batch_for_solid_set(exec_state, face.solid.clone().into()) + args.flush_batch_for_solids(exec_state, vec![(*face.solid).clone()]) .await?; } SketchSurface::Plane(plane) if !plane.is_standard() => { @@ -1301,8 +1311,8 @@ pub(crate) async fn inner_start_profile_at( } /// Returns the X component of the sketch profile start point. -pub async fn profile_start_x(_exec_state: &mut ExecState, args: Args) -> Result { - let sketch: Sketch = args.get_sketch()?; +pub async fn profile_start_x(exec_state: &mut ExecState, args: Args) -> Result { + let sketch: Sketch = args.get_sketch(exec_state)?; let ty = sketch.units.into(); let x = inner_profile_start_x(sketch)?; Ok(args.make_user_val_from_f64_with_type(TyF64::new(x, ty))) @@ -1326,8 +1336,8 @@ pub(crate) fn inner_profile_start_x(sketch: Sketch) -> Result { } /// Returns the Y component of the sketch profile start point. -pub async fn profile_start_y(_exec_state: &mut ExecState, args: Args) -> Result { - let sketch: Sketch = args.get_sketch()?; +pub async fn profile_start_y(exec_state: &mut ExecState, args: Args) -> Result { + let sketch: Sketch = args.get_sketch(exec_state)?; let ty = sketch.units.into(); let x = inner_profile_start_y(sketch)?; Ok(args.make_user_val_from_f64_with_type(TyF64::new(x, ty))) @@ -1350,8 +1360,8 @@ pub(crate) fn inner_profile_start_y(sketch: Sketch) -> Result { } /// Returns the sketch profile start point. -pub async fn profile_start(_exec_state: &mut ExecState, args: Args) -> Result { - let sketch: Sketch = args.get_sketch()?; +pub async fn profile_start(exec_state: &mut ExecState, args: Args) -> Result { + let sketch: Sketch = args.get_sketch(exec_state)?; let ty = sketch.units.into(); let point = inner_profile_start(sketch)?; Ok(KclValue::from_point2d(point, ty, args.into())) @@ -1378,7 +1388,8 @@ pub(crate) fn inner_profile_start(sketch: Sketch) -> Result<[f64; 2], KclError> /// Close the current sketch. pub async fn close(exec_state: &mut ExecState, args: Args) -> Result { - let sketch = args.get_unlabeled_kw_arg("sketch")?; + let sketch = + args.get_unlabeled_kw_arg_typed("sketch", &RuntimeType::Primitive(PrimitiveType::Sketch), exec_state)?; let tag = args.get_kw_arg_opt(NEW_TAG_KW)?; let new_sketch = inner_close(sketch, tag, exec_state, args).await?; Ok(KclValue::Sketch { @@ -1495,7 +1506,7 @@ pub struct ArcToData { /// Draw an arc. pub async fn arc(exec_state: &mut ExecState, args: Args) -> Result { - let (data, sketch, tag): (ArcData, Sketch, Option) = args.get_data_and_sketch_and_tag()?; + let (data, sketch, tag): (ArcData, Sketch, Option) = args.get_data_and_sketch_and_tag(exec_state)?; let new_sketch = inner_arc(data, sketch, tag, exec_state, args).await?; Ok(KclValue::Sketch { @@ -1608,7 +1619,7 @@ pub(crate) async fn inner_arc( /// Draw a three point arc. pub async fn arc_to(exec_state: &mut ExecState, args: Args) -> Result { - let (data, sketch, tag): (ArcToData, Sketch, Option) = args.get_data_and_sketch_and_tag()?; + let (data, sketch, tag): (ArcToData, Sketch, Option) = args.get_data_and_sketch_and_tag(exec_state)?; let new_sketch = inner_arc_to(data, sketch, tag, exec_state, args).await?; Ok(KclValue::Sketch { @@ -1744,7 +1755,8 @@ pub enum TangentialArcData { /// Draw a tangential arc. pub async fn tangential_arc(exec_state: &mut ExecState, args: Args) -> Result { - let (data, sketch, tag): (TangentialArcData, Sketch, Option) = args.get_data_and_sketch_and_tag()?; + let (data, sketch, tag): (TangentialArcData, Sketch, Option) = + args.get_data_and_sketch_and_tag(exec_state)?; let new_sketch = inner_tangential_arc(data, sketch, tag, exec_state, args).await?; Ok(KclValue::Sketch { @@ -1871,7 +1883,7 @@ fn tan_arc_to(sketch: &Sketch, to: &[f64; 2]) -> ModelingCmd { /// Draw a tangential arc to a specific point. pub async fn tangential_arc_to(exec_state: &mut ExecState, args: Args) -> Result { - let (to, sketch, tag): ([f64; 2], Sketch, Option) = super::args::FromArgs::from_args(&args, 0)?; + let (to, sketch, tag): ([f64; 2], Sketch, Option) = args.get_data_and_sketch_and_tag(exec_state)?; let new_sketch = inner_tangential_arc_to(to, sketch, tag, exec_state, args).await?; Ok(KclValue::Sketch { @@ -1881,7 +1893,7 @@ pub async fn tangential_arc_to(exec_state: &mut ExecState, args: Args) -> Result /// Draw a tangential arc to point some distance away.. pub async fn tangential_arc_to_relative(exec_state: &mut ExecState, args: Args) -> Result { - let (delta, sketch, tag): ([f64; 2], Sketch, Option) = super::args::FromArgs::from_args(&args, 0)?; + let (delta, sketch, tag): ([f64; 2], Sketch, Option) = args.get_data_and_sketch_and_tag(exec_state)?; let new_sketch = inner_tangential_arc_to_relative(delta, sketch, tag, exec_state, args).await?; Ok(KclValue::Sketch { @@ -2055,7 +2067,7 @@ pub struct BezierData { /// Draw a bezier curve. pub async fn bezier_curve(exec_state: &mut ExecState, args: Args) -> Result { - let (data, sketch, tag): (BezierData, Sketch, Option) = args.get_data_and_sketch_and_tag()?; + let (data, sketch, tag): (BezierData, Sketch, Option) = args.get_data_and_sketch_and_tag(exec_state)?; let new_sketch = inner_bezier_curve(data, sketch, tag, exec_state, args).await?; Ok(KclValue::Sketch { @@ -2138,7 +2150,7 @@ async fn inner_bezier_curve( /// Use a sketch to cut a hole in another sketch. pub async fn hole(exec_state: &mut ExecState, args: Args) -> Result { - let (hole_sketch, sketch): (SketchSet, Sketch) = args.get_sketches()?; + let (hole_sketch, sketch): (Vec, Sketch) = args.get_sketches(exec_state)?; let new_sketch = inner_hole(hole_sketch, sketch, exec_state, args).await?; Ok(KclValue::Sketch { @@ -2182,13 +2194,12 @@ pub async fn hole(exec_state: &mut ExecState, args: Args) -> Result, sketch: Sketch, exec_state: &mut ExecState, args: Args, ) -> Result { - let hole_sketches: Vec = hole_sketch.into(); - for hole_sketch in hole_sketches { + for hole_sketch in hole_sketch { args.batch_modeling_cmd( exec_state.next_uuid(), ModelingCmd::from(mcmd::Solid2dAddHole { diff --git a/rust/kcl-lib/src/std/sweep.rs b/rust/kcl-lib/src/std/sweep.rs index 982dcafa4..9eb8a3cf9 100644 --- a/rust/kcl-lib/src/std/sweep.rs +++ b/rust/kcl-lib/src/std/sweep.rs @@ -9,7 +9,10 @@ use serde::{Deserialize, Serialize}; use crate::{ errors::KclError, - execution::{ExecState, Helix, KclValue, Sketch, SketchSet, SolidSet}, + execution::{ + kcl_value::{ArrayLen, RuntimeType}, + ExecState, Helix, KclValue, PrimitiveType, Sketch, Solid, + }, std::{extrude::do_post_extrude, fillet::default_tolerance, Args}, }; @@ -24,12 +27,16 @@ pub enum SweepPath { /// Extrude a sketch along a path. pub async fn sweep(exec_state: &mut ExecState, args: Args) -> Result { - let sketch_set = args.get_unlabeled_kw_arg("sketch_set")?; + let sketches = args.get_unlabeled_kw_arg_typed( + "sketches", + &RuntimeType::Array(PrimitiveType::Sketch, ArrayLen::NonEmpty), + exec_state, + )?; let path: SweepPath = args.get_kw_arg("path")?; let sectional = args.get_kw_arg_opt("sectional")?; let tolerance = args.get_kw_arg_opt("tolerance")?; - let value = inner_sweep(sketch_set, path, sectional, tolerance, exec_state, args).await?; + let value = inner_sweep(sketches, path, sectional, tolerance, exec_state, args).await?; Ok(value.into()) } @@ -134,26 +141,25 @@ pub async fn sweep(exec_state: &mut ExecState, args: Args) -> Result, path: SweepPath, sectional: Option, tolerance: Option, exec_state: &mut ExecState, args: Args, -) -> Result { +) -> Result, KclError> { let trajectory = match path { SweepPath::Sketch(sketch) => sketch.id.into(), SweepPath::Helix(helix) => helix.value.into(), }; - let sketches: Vec = sketch_set.into(); let mut solids = Vec::new(); for sketch in &sketches { let id = exec_state.next_uuid(); @@ -171,5 +177,5 @@ async fn inner_sweep( solids.push(do_post_extrude(sketch.clone(), id.into(), 0.0, exec_state, args.clone()).await?); } - Ok(solids.into()) + Ok(solids) } diff --git a/rust/kcl-lib/src/std/transform.rs b/rust/kcl-lib/src/std/transform.rs index f356ff098..c1b0851e7 100644 --- a/rust/kcl-lib/src/std/transform.rs +++ b/rust/kcl-lib/src/std/transform.rs @@ -13,18 +13,28 @@ use kittycad_modeling_cmds as kcmc; use crate::{ errors::{KclError, KclErrorDetails}, - execution::{ExecState, KclValue, SolidOrImportedGeometry}, + execution::{ + kcl_value::{ArrayLen, RuntimeType}, + ExecState, KclValue, PrimitiveType, SolidOrImportedGeometry, + }, std::Args, }; /// Scale a solid. pub async fn scale(exec_state: &mut ExecState, args: Args) -> Result { - let solid_set = args.get_unlabeled_kw_arg("solid_set")?; + let solids = args.get_unlabeled_kw_arg_typed( + "solids", + &RuntimeType::Union(vec![ + RuntimeType::Array(PrimitiveType::Solid, ArrayLen::NonEmpty), + RuntimeType::Primitive(PrimitiveType::ImportedGeometry), + ]), + exec_state, + )?; let scale = args.get_kw_arg("scale")?; let global = args.get_kw_arg_opt("global")?; - let solid = inner_scale(solid_set, scale, global, exec_state, args).await?; - Ok(solid.into()) + let solids = inner_scale(solids, scale, global, exec_state, args).await?; + Ok(solids.into()) } /// Scale a solid. @@ -124,19 +134,19 @@ pub async fn scale(exec_state: &mut ExecState, args: Args) -> Result, exec_state: &mut ExecState, args: Args, ) -> Result { - for solid_id in solid_set.ids() { + for solid_id in solids.ids() { let id = exec_state.next_uuid(); args.batch_modeling_cmd( @@ -162,17 +172,24 @@ async fn inner_scale( .await?; } - Ok(solid_set) + Ok(solids) } /// Move a solid. pub async fn translate(exec_state: &mut ExecState, args: Args) -> Result { - let solid_set = args.get_unlabeled_kw_arg("solid_set")?; + let solids = args.get_unlabeled_kw_arg_typed( + "solids", + &RuntimeType::Union(vec![ + RuntimeType::Array(PrimitiveType::Solid, ArrayLen::NonEmpty), + RuntimeType::Primitive(PrimitiveType::ImportedGeometry), + ]), + exec_state, + )?; let translate = args.get_kw_arg("translate")?; let global = args.get_kw_arg_opt("global")?; - let solid = inner_translate(solid_set, translate, global, exec_state, args).await?; - Ok(solid.into()) + let solids = inner_translate(solids, translate, global, exec_state, args).await?; + Ok(solids.into()) } /// Move a solid. @@ -264,19 +281,19 @@ pub async fn translate(exec_state: &mut ExecState, args: Args) -> Result, exec_state: &mut ExecState, args: Args, ) -> Result { - for solid_id in solid_set.ids() { + for solid_id in solids.ids() { let id = exec_state.next_uuid(); args.batch_modeling_cmd( @@ -302,12 +319,19 @@ async fn inner_translate( .await?; } - Ok(solid_set) + Ok(solids) } /// Rotate a solid. pub async fn rotate(exec_state: &mut ExecState, args: Args) -> Result { - let solid_set = args.get_unlabeled_kw_arg("solid_set")?; + let solids = args.get_unlabeled_kw_arg_typed( + "solid", + &RuntimeType::Union(vec![ + RuntimeType::Array(PrimitiveType::Solid, ArrayLen::NonEmpty), + RuntimeType::Primitive(PrimitiveType::ImportedGeometry), + ]), + exec_state, + )?; let roll = args.get_kw_arg_opt("roll")?; let pitch = args.get_kw_arg_opt("pitch")?; let yaw = args.get_kw_arg_opt("yaw")?; @@ -415,8 +439,8 @@ pub async fn rotate(exec_state: &mut ExecState, args: Args) -> Result Result Result, pitch: Option, yaw: Option, @@ -592,7 +616,7 @@ async fn inner_rotate( exec_state: &mut ExecState, args: Args, ) -> Result { - for solid_id in solid_set.ids() { + for solid_id in solids.ids() { let id = exec_state.next_uuid(); if let (Some(roll), Some(pitch), Some(yaw)) = (roll, pitch, yaw) { @@ -645,7 +669,7 @@ async fn inner_rotate( } } - Ok(solid_set) + Ok(solids) } #[cfg(test)] diff --git a/rust/kcl-lib/src/unparser.rs b/rust/kcl-lib/src/unparser.rs index 76fa1b5a1..64005be26 100644 --- a/rust/kcl-lib/src/unparser.rs +++ b/rust/kcl-lib/src/unparser.rs @@ -821,7 +821,7 @@ impl Type { pub fn recast(&self, options: &FormatOptions, indentation_level: usize) -> String { match self { Type::Primitive(t) => t.to_string(), - Type::Array(t) => format!("{t}[]"), + Type::Array(t) => format!("[{t}]"), Type::Object { properties } => { let mut result = "{".to_owned(); for p in properties { @@ -1268,7 +1268,7 @@ thing(1) #[test] fn test_recast_typed_fn() { - let some_program_string = r#"fn thing(x: string, y: bool[]): number { + let some_program_string = r#"fn thing(x: string, y: [bool]): number { return x + 1 } "#; diff --git a/rust/kcl-lib/tests/circular_pattern3d_a_pattern/ops.snap b/rust/kcl-lib/tests/circular_pattern3d_a_pattern/ops.snap index f89438104..454777447 100644 --- a/rust/kcl-lib/tests/circular_pattern3d_a_pattern/ops.snap +++ b/rust/kcl-lib/tests/circular_pattern3d_a_pattern/ops.snap @@ -350,28 +350,49 @@ description: Operations executed circular_pattern3d_a_pattern.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, diff --git a/rust/kcl-lib/tests/circular_pattern3d_a_pattern/program_memory.snap b/rust/kcl-lib/tests/circular_pattern3d_a_pattern/program_memory.snap index 3f6b348a4..27edca99e 100644 --- a/rust/kcl-lib/tests/circular_pattern3d_a_pattern/program_memory.snap +++ b/rust/kcl-lib/tests/circular_pattern3d_a_pattern/program_memory.snap @@ -218,62045 +218,62927 @@ description: Variables in memory after executing circular_pattern3d_a_pattern.kc } }, "pattn1": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] }, "pattn2": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 }, + "units": { + "type": "Mm" + } + }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { "from": [ 0.0, 0.0 ], - "tag": null, "to": [ 0.0, - 2.0 + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 96, - 114, + 41, + 66, 0 ] - }, - "from": [ - 0.0, - 2.0 + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + } + } + }, + { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { "from": [ 0.0, 0.0 ], - "tag": null, "to": [ 0.0, - 2.0 + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 96, - 114, + 41, + 66, 0 ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + } + } + }, + { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 120, - 139, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "tag": null, + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" } ], - "on": { - "type": "plane", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "on": { + "type": "plane", "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - } - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] }, - "from": [ - 3.0, - 3.0 - ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 145, - 153, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" } ], - "on": { - "type": "plane", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "on": { + "type": "plane", "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - } - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, + "start": { "from": [ 0.0, - 2.0 + 0.0 ], - "tag": null, "to": [ - 3.0, - 3.0 + 0.0, + 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] }, - "from": [ - 3.0, - 3.0 - ], "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 145, - 153, + 41, + 66, 0 ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 ], "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 ], "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 ], "tag": null, - "to": [ - 3.0, - -1.0 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, + "start": { "from": [ - 3.0, - -1.0 + 0.0, + 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 }, + "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] diff --git a/rust/kcl-lib/tests/crazy_multi_profile/ops.snap b/rust/kcl-lib/tests/crazy_multi_profile/ops.snap index c9690fc01..c56ad38d0 100644 --- a/rust/kcl-lib/tests/crazy_multi_profile/ops.snap +++ b/rust/kcl-lib/tests/crazy_multi_profile/ops.snap @@ -138,7 +138,7 @@ description: Operations executed crazy_multi_profile.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -304,7 +304,7 @@ description: Operations executed crazy_multi_profile.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { diff --git a/rust/kcl-lib/tests/import_function_not_sketch/ops.snap b/rust/kcl-lib/tests/import_function_not_sketch/ops.snap index 34d74c596..8841da17a 100644 --- a/rust/kcl-lib/tests/import_function_not_sketch/ops.snap +++ b/rust/kcl-lib/tests/import_function_not_sketch/ops.snap @@ -44,7 +44,7 @@ description: Operations executed import_function_not_sketch.kcl 3 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { diff --git a/rust/kcl-lib/tests/kcl_samples/a-parametric-bearing-pillow-block/exported_step.step b/rust/kcl-lib/tests/kcl_samples/a-parametric-bearing-pillow-block/exported_step.step index 4635195fb..463a4c9f2 100644 --- a/rust/kcl-lib/tests/kcl_samples/a-parametric-bearing-pillow-block/exported_step.step +++ b/rust/kcl-lib/tests/kcl_samples/a-parametric-bearing-pillow-block/exported_step.step @@ -192,7 +192,7 @@ DATA; #176 = CARTESIAN_POINT('NONE', (0.02734473691501536, 0.019049, 0.055340286375673856)); #177 = CARTESIAN_POINT('NONE', (0.0274427235672502, 0.019049, 0.05511825220075177)); #178 = CARTESIAN_POINT('NONE', (0.027444015950899316, 0.019049, 0.05511532370660824)); -#179 = CARTESIAN_POINT('NONE', (0.02755437216778796, 0.019049, 0.05489670854927665)); +#179 = CARTESIAN_POINT('NONE', (0.02755437216778796, 0.019049, 0.054896708549276654)); #180 = CARTESIAN_POINT('NONE', (0.027555827698383523, 0.019049, 0.054893825149871324)); #181 = CARTESIAN_POINT('NONE', (0.027678400837579598, 0.019049, 0.05467963903875645)); #182 = CARTESIAN_POINT('NONE', (0.02768001750186299, 0.019049, 0.05467681405574542)); @@ -210,7 +210,7 @@ DATA; #194 = CARTESIAN_POINT('NONE', (0.028473583951938546, 0.019049, 0.053693628473383485)); #195 = CARTESIAN_POINT('NONE', (0.028660294544066527, 0.019049, 0.05352587314256537)); #196 = CARTESIAN_POINT('NONE', (0.028662757141888564, 0.019049, 0.053523660552976325)); -#197 = CARTESIAN_POINT('NONE', (0.028759270314106068, 0.019049, 0.05344583333333333)); +#197 = CARTESIAN_POINT('NONE', (0.02875927031410607, 0.019049, 0.05344583333333333)); #198 = CARTESIAN_POINT('NONE', (0.028857730169404093, 0.019049, 0.053366436328673425)); #199 = CARTESIAN_POINT('NONE', (0.02886030174366479, 0.019049, 0.053364362637899225)); #200 = CARTESIAN_POINT('NONE', (0.02906263882725269, 0.019049, 0.05321824789528891)); @@ -372,7 +372,7 @@ DATA; #356 = CARTESIAN_POINT('NONE', (0.03153077965465271, 0.019049, 0.06190745191149483)); #357 = CARTESIAN_POINT('NONE', (0.03131095718312319, 0.019049, 0.06189215217292461)); #358 = CARTESIAN_POINT('NONE', (0.03130805785998649, 0.019049, 0.06189195037878721)); -#359 = CARTESIAN_POINT('NONE', (0.031085440375876135, 0.019049, 0.061865835463019006)); +#359 = CARTESIAN_POINT('NONE', (0.031085440375876138, 0.019049, 0.061865835463019006)); #360 = CARTESIAN_POINT('NONE', (0.03108250418824335, 0.019049, 0.06186549102334924)); #361 = CARTESIAN_POINT('NONE', (0.030857821004650707, 0.019049, 0.061828112720887236)); #362 = CARTESIAN_POINT('NONE', (0.030854857571712815, 0.019049, 0.06182761972407765)); @@ -432,7 +432,7 @@ DATA; #416 = CARTESIAN_POINT('NONE', (0.02699254808850517, 0.019049, 0.057369220345347284)); #417 = CARTESIAN_POINT('NONE', (0.026987565714448023, 0.019049, 0.05715285374235715)); #418 = CARTESIAN_POINT('NONE', (0.0269875, 0.019049, 0.05715)); -#419 = B_SPLINE_CURVE_WITH_KNOTS('NONE', 2, (#160, #161, #162, #163, #164, #165, #166, #167, #168, #169, #170, #171, #172, #173, #174, #175, #176, #177, #178, #179, #180, #181, #182, #183, #184, #185, #186, #187, #188, #189, #190, #191, #192, #193, #194, #195, #196, #197, #198, #199, #200, #201, #202, #203, #204, #205, #206, #207, #208, #209, #210, #211, #212, #213, #214, #215, #216, #217, #218, #219, #220, #221, #222, #223, #224, #225, #226, #227, #228, #229, #230, #231, #232, #233, #234, #235, #236, #237, #238, #239, #240, #241, #242, #243, #244, #245, #246, #247, #248, #249, #250, #251, #252, #253, #254, #255, #256, #257, #258, #259, #260, #261, #262, #263, #264, #265, #266, #267, #268, #269, #270, #271, #272, #273, #274, #275, #276, #277, #278, #279, #280, #281, #282, #283, #284, #285, #286, #287, #288, #289, #290, #291, #292, #293, #294, #295, #296, #297, #298, #299, #300, #301, #302, #303, #304, #305, #306, #307, #308, #309, #310, #311, #312, #313, #314, #315, #316, #317, #318, #319, #320, #321, #322, #323, #324, #325, #326, #327, #328, #329, #330, #331, #332, #333, #334, #335, #336, #337, #338, #339, #340, #341, #342, #343, #344, #345, #346, #347, #348, #349, #350, #351, #352, #353, #354, #355, #356, #357, #358, #359, #360, #361, #362, #363, #364, #365, #366, #367, #368, #369, #370, #371, #372, #373, #374, #375, #376, #377, #378, #379, #380, #381, #382, #383, #384, #385, #386, #387, #388, #389, #390, #391, #392, #393, #394, #395, #396, #397, #398, #399, #400, #401, #402, #403, #404, #405, #406, #407, #408, #409, #410, #411, #412, #413, #414, #415, #416, #417, #418), .UNSPECIFIED., .F., .F., (3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3), (-1, -0.9961089494163424, -0.9922178988326849, -0.9883268482490273, -0.9844357976653697, -0.980544747081712, -0.9766536964980544, -0.9727626459143969, -0.9688715953307393, -0.9649805447470817, -0.9610894941634242, -0.9571984435797666, -0.9533073929961089, -0.9494163424124513, -0.9455252918287937, -0.9416342412451362, -0.9377431906614786, -0.933852140077821, -0.9299610894941635, -0.9260700389105059, -0.9221789883268483, -0.9182879377431906, -0.914396887159533, -0.9105058365758755, -0.9066147859922179, -0.9027237354085603, -0.8988326848249028, -0.8949416342412452, -0.8910505836575875, -0.8871595330739299, -0.8832684824902723, -0.8793774319066148, -0.8754863813229572, -0.8715953307392996, -0.867704280155642, -0.8638132295719845, -0.8599221789883269, -0.8560311284046693, -0.8521400778210116, -0.8482490272373541, -0.8443579766536965, -0.8404669260700389, -0.8365758754863813, -0.8326848249027237, -0.8287937743190661, -0.8249027237354085, -0.8210116731517509, -0.8171206225680934, -0.8132295719844358, -0.8093385214007782, -0.8054474708171206, -0.8015564202334631, -0.7976653696498055, -0.7937743190661479, -0.7898832684824902, -0.7859922178988327, -0.7821011673151751, -0.7782101167315175, -0.77431906614786, -0.7704280155642023, -0.7665369649805447, -0.7626459143968871, -0.7587548638132295, -0.754863813229572, -0.7509727626459144, -0.7470817120622568, -0.7431906614785992, -0.7392996108949417, -0.7354085603112841, -0.7315175097276265, -0.7276264591439688, -0.7237354085603113, -0.7198443579766537, -0.7159533073929961, -0.7120622568093385, -0.7081712062256809, -0.7042801556420233, -0.7003891050583657, -0.6964980544747081, -0.6926070038910506, -0.688715953307393, -0.6848249027237354, -0.6809338521400778, -0.6770428015564203, -0.6731517509727627, -0.6692607003891051, -0.6653696498054474, -0.6614785992217899, -0.6575875486381323, -0.6536964980544747, -0.6498054474708171, -0.6459143968871595, -0.6420233463035019, -0.6381322957198443, -0.6342412451361867, -0.6303501945525292, -0.6264591439688716, -0.622568093385214, -0.6186770428015564, -0.6147859922178989, -0.6108949416342413, -0.6070038910505837, -0.603112840466926, -0.5992217898832685, -0.5953307392996109, -0.5914396887159533, -0.5875486381322957, -0.5836575875486381, -0.5797665369649805, -0.5758754863813229, -0.5719844357976653, -0.5680933852140078, -0.5642023346303502, -0.5603112840466926, -0.556420233463035, -0.5525291828793775, -0.5486381322957199, -0.5447470817120623, -0.5408560311284046, -0.5369649805447471, -0.5330739299610895, -0.5291828793774319, -0.5252918287937743, -0.5214007782101167, -0.5175097276264591, -0.5136186770428015, -0.5097276264591439, -0.5058365758754864, -0.5019455252918288, -0.4980544747081712, -0.49416342412451364, -0.49027237354085607, -0.48638132295719844, -0.48249027237354086, -0.4785992217898833, -0.47470817120622566, -0.4708171206225681, -0.4669260700389105, -0.46303501945525294, -0.45914396887159536, -0.45525291828793774, -0.45136186770428016, -0.4474708171206226, -0.44357976653696496, -0.4396887159533074, -0.4357976653696498, -0.43190661478599224, -0.42801556420233466, -0.42412451361867703, -0.42023346303501946, -0.4163424124513619, -0.41245136186770426, -0.4085603112840467, -0.4046692607003891, -0.40077821011673154, -0.39688715953307396, -0.39299610894941633, -0.38910505836575876, -0.3852140077821012, -0.38132295719844356, -0.377431906614786, -0.3735408560311284, -0.36964980544747084, -0.36575875486381326, -0.36186770428015563, -0.35797665369649806, -0.3540856031128405, -0.35019455252918286, -0.3463035019455253, -0.3424124513618677, -0.33852140077821014, -0.33463035019455256, -0.33073929961089493, -0.32684824902723736, -0.3229571984435798, -0.31906614785992216, -0.3151750972762646, -0.311284046692607, -0.30739299610894943, -0.30350194552529186, -0.29961089494163423, -0.29571984435797666, -0.2918287937743191, -0.28793774319066145, -0.2840466926070039, -0.2801556420233463, -0.27626459143968873, -0.27237354085603116, -0.26848249027237353, -0.26459143968871596, -0.2607003891050584, -0.25680933852140075, -0.2529182879377432, -0.2490272373540856, -0.24513618677042803, -0.24124513618677043, -0.23735408560311283, -0.23346303501945526, -0.22957198443579768, -0.22568093385214008, -0.22178988326848248, -0.2178988326848249, -0.21400778210116733, -0.21011673151750973, -0.20622568093385213, -0.20233463035019456, -0.19844357976653698, -0.19455252918287938, -0.19066147859922178, -0.1867704280155642, -0.18287937743190663, -0.17898832684824903, -0.17509727626459143, -0.17120622568093385, -0.16731517509727628, -0.16342412451361868, -0.15953307392996108, -0.1556420233463035, -0.15175097276264593, -0.14785992217898833, -0.14396887159533073, -0.14007782101167315, -0.13618677042801558, -0.13229571984435798, -0.12840466926070038, -0.1245136186770428, -0.12062256809338522, -0.11673151750972763, -0.11284046692607004, -0.10894941634241245, -0.10505836575875487, -0.10116731517509728, -0.09727626459143969, -0.0933852140077821, -0.08949416342412451, -0.08560311284046693, -0.08171206225680934, -0.07782101167315175, -0.07392996108949416, -0.07003891050583658, -0.06614785992217899, -0.0622568093385214, -0.058365758754863814, -0.054474708171206226, -0.05058365758754864, -0.04669260700389105, -0.042801556420233464, -0.038910505836575876, -0.03501945525291829, -0.0311284046692607, -0.027237354085603113, -0.023346303501945526, -0.019455252918287938, -0.01556420233463035, -0.011673151750972763, -0.007782101167315175, -0.0038910505836575876, -0), .UNSPECIFIED.); +#419 = B_SPLINE_CURVE_WITH_KNOTS('NONE', 2, (#160, #161, #162, #163, #164, #165, #166, #167, #168, #169, #170, #171, #172, #173, #174, #175, #176, #177, #178, #179, #180, #181, #182, #183, #184, #185, #186, #187, #188, #189, #190, #191, #192, #193, #194, #195, #196, #197, #198, #199, #200, #201, #202, #203, #204, #205, #206, #207, #208, #209, #210, #211, #212, #213, #214, #215, #216, #217, #218, #219, #220, #221, #222, #223, #224, #225, #226, #227, #228, #229, #230, #231, #232, #233, #234, #235, #236, #237, #238, #239, #240, #241, #242, #243, #244, #245, #246, #247, #248, #249, #250, #251, #252, #253, #254, #255, #256, #257, #258, #259, #260, #261, #262, #263, #264, #265, #266, #267, #268, #269, #270, #271, #272, #273, #274, #275, #276, #277, #278, #279, #280, #281, #282, #283, #284, #285, #286, #287, #288, #289, #290, #291, #292, #293, #294, #295, #296, #297, #298, #299, #300, #301, #302, #303, #304, #305, #306, #307, #308, #309, #310, #311, #312, #313, #314, #315, #316, #317, #318, #319, #320, #321, #322, #323, #324, #325, #326, #327, #328, #329, #330, #331, #332, #333, #334, #335, #336, #337, #338, #339, #340, #341, #342, #343, #344, #345, #346, #347, #348, #349, #350, #351, #352, #353, #354, #355, #356, #357, #358, #359, #360, #361, #362, #363, #364, #365, #366, #367, #368, #369, #370, #371, #372, #373, #374, #375, #376, #377, #378, #379, #380, #381, #382, #383, #384, #385, #386, #387, #388, #389, #390, #391, #392, #393, #394, #395, #396, #397, #398, #399, #400, #401, #402, #403, #404, #405, #406, #407, #408, #409, #410, #411, #412, #413, #414, #415, #416, #417, #418), .UNSPECIFIED., .F., .F., (3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3), (0, 0.0038910505836575876, 0.007782101167315175, 0.011673151750972763, 0.01556420233463035, 0.019455252918287938, 0.023346303501945526, 0.027237354085603113, 0.0311284046692607, 0.03501945525291829, 0.038910505836575876, 0.042801556420233464, 0.04669260700389105, 0.05058365758754864, 0.054474708171206226, 0.058365758754863814, 0.0622568093385214, 0.06614785992217899, 0.07003891050583658, 0.07392996108949416, 0.07782101167315175, 0.08171206225680934, 0.08560311284046693, 0.08949416342412451, 0.0933852140077821, 0.09727626459143969, 0.10116731517509728, 0.10505836575875487, 0.10894941634241245, 0.11284046692607004, 0.11673151750972763, 0.12062256809338522, 0.1245136186770428, 0.12840466926070038, 0.13229571984435798, 0.13618677042801558, 0.14007782101167315, 0.14396887159533073, 0.14785992217898833, 0.15175097276264593, 0.1556420233463035, 0.15953307392996108, 0.16342412451361868, 0.16731517509727628, 0.17120622568093385, 0.17509727626459143, 0.17898832684824903, 0.18287937743190663, 0.1867704280155642, 0.19066147859922178, 0.19455252918287938, 0.19844357976653698, 0.20233463035019456, 0.20622568093385213, 0.21011673151750973, 0.21400778210116733, 0.2178988326848249, 0.22178988326848248, 0.22568093385214008, 0.22957198443579768, 0.23346303501945526, 0.23735408560311283, 0.24124513618677043, 0.24513618677042803, 0.2490272373540856, 0.2529182879377432, 0.25680933852140075, 0.2607003891050584, 0.26459143968871596, 0.26848249027237353, 0.27237354085603116, 0.27626459143968873, 0.2801556420233463, 0.2840466926070039, 0.28793774319066145, 0.2918287937743191, 0.29571984435797666, 0.29961089494163423, 0.30350194552529186, 0.30739299610894943, 0.311284046692607, 0.3151750972762646, 0.31906614785992216, 0.3229571984435798, 0.32684824902723736, 0.33073929961089493, 0.33463035019455256, 0.33852140077821014, 0.3424124513618677, 0.3463035019455253, 0.35019455252918286, 0.3540856031128405, 0.35797665369649806, 0.36186770428015563, 0.36575875486381326, 0.36964980544747084, 0.3735408560311284, 0.377431906614786, 0.38132295719844356, 0.3852140077821012, 0.38910505836575876, 0.39299610894941633, 0.39688715953307396, 0.40077821011673154, 0.4046692607003891, 0.4085603112840467, 0.41245136186770426, 0.4163424124513619, 0.42023346303501946, 0.42412451361867703, 0.42801556420233466, 0.43190661478599224, 0.4357976653696498, 0.4396887159533074, 0.44357976653696496, 0.4474708171206226, 0.45136186770428016, 0.45525291828793774, 0.45914396887159536, 0.46303501945525294, 0.4669260700389105, 0.4708171206225681, 0.47470817120622566, 0.4785992217898833, 0.48249027237354086, 0.48638132295719844, 0.49027237354085607, 0.49416342412451364, 0.4980544747081712, 0.5019455252918288, 0.5058365758754864, 0.5097276264591439, 0.5136186770428015, 0.5175097276264591, 0.5214007782101167, 0.5252918287937743, 0.5291828793774319, 0.5330739299610895, 0.5369649805447471, 0.5408560311284046, 0.5447470817120623, 0.5486381322957199, 0.5525291828793775, 0.556420233463035, 0.5603112840466926, 0.5642023346303502, 0.5680933852140078, 0.5719844357976653, 0.5758754863813229, 0.5797665369649805, 0.5836575875486381, 0.5875486381322957, 0.5914396887159533, 0.5953307392996109, 0.5992217898832685, 0.603112840466926, 0.6070038910505837, 0.6108949416342413, 0.6147859922178989, 0.6186770428015564, 0.622568093385214, 0.6264591439688716, 0.6303501945525292, 0.6342412451361867, 0.6381322957198443, 0.6420233463035019, 0.6459143968871595, 0.6498054474708171, 0.6536964980544747, 0.6575875486381323, 0.6614785992217899, 0.6653696498054474, 0.6692607003891051, 0.6731517509727627, 0.6770428015564203, 0.6809338521400778, 0.6848249027237354, 0.688715953307393, 0.6926070038910506, 0.6964980544747081, 0.7003891050583657, 0.7042801556420233, 0.7081712062256809, 0.7120622568093385, 0.7159533073929961, 0.7198443579766537, 0.7237354085603113, 0.7276264591439688, 0.7315175097276265, 0.7354085603112841, 0.7392996108949417, 0.7431906614785992, 0.7470817120622568, 0.7509727626459144, 0.754863813229572, 0.7587548638132295, 0.7626459143968871, 0.7665369649805447, 0.7704280155642023, 0.77431906614786, 0.7782101167315175, 0.7821011673151751, 0.7859922178988327, 0.7898832684824902, 0.7937743190661479, 0.7976653696498055, 0.8015564202334631, 0.8054474708171206, 0.8093385214007782, 0.8132295719844358, 0.8171206225680934, 0.8210116731517509, 0.8249027237354085, 0.8287937743190661, 0.8326848249027237, 0.8365758754863813, 0.8404669260700389, 0.8443579766536965, 0.8482490272373541, 0.8521400778210116, 0.8560311284046693, 0.8599221789883269, 0.8638132295719845, 0.867704280155642, 0.8715953307392996, 0.8754863813229572, 0.8793774319066148, 0.8832684824902723, 0.8871595330739299, 0.8910505836575875, 0.8949416342412452, 0.8988326848249028, 0.9027237354085603, 0.9066147859922179, 0.9105058365758755, 0.914396887159533, 0.9182879377431906, 0.9221789883268483, 0.9260700389105059, 0.9299610894941635, 0.933852140077821, 0.9377431906614786, 0.9416342412451362, 0.9455252918287937, 0.9494163424124513, 0.9533073929961089, 0.9571984435797666, 0.9610894941634242, 0.9649805447470817, 0.9688715953307393, 0.9727626459143969, 0.9766536964980544, 0.980544747081712, 0.9844357976653697, 0.9883268482490273, 0.9922178988326849, 0.9961089494163424, 1), .UNSPECIFIED.); #420 = DIRECTION('NONE', (0, -1, 0)); #421 = VECTOR('NONE', #420, 1); #422 = CARTESIAN_POINT('NONE', (0.0269875, 0.019051000000000002, 0.05715)); @@ -910,7 +910,7 @@ DATA; #894 = CARTESIAN_POINT('NONE', (0.03153077965465271, 0.019049, -0.052392548088505166)); #895 = CARTESIAN_POINT('NONE', (0.03131095718312319, 0.019049, -0.05240784782707537)); #896 = CARTESIAN_POINT('NONE', (0.03130805785998649, 0.019049, -0.05240804962121276)); -#897 = CARTESIAN_POINT('NONE', (0.031085440375876135, 0.019049, -0.05243416453698098)); +#897 = CARTESIAN_POINT('NONE', (0.031085440375876138, 0.019049, -0.05243416453698098)); #898 = CARTESIAN_POINT('NONE', (0.03108250418824335, 0.019049, -0.05243450897665074)); #899 = CARTESIAN_POINT('NONE', (0.030857821004650707, 0.019049, -0.05247188727911278)); #900 = CARTESIAN_POINT('NONE', (0.030854857571712815, 0.019049, -0.05247238027592237)); @@ -920,7 +920,7 @@ DATA; #904 = CARTESIAN_POINT('NONE', (0.030396563443875996, 0.019049, -0.05258386205436725)); #905 = CARTESIAN_POINT('NONE', (0.030170677017821137, 0.019049, -0.052657072057927405)); #906 = CARTESIAN_POINT('NONE', (0.03016769771485556, 0.019049, -0.05265803765282625)); -#907 = CARTESIAN_POINT('NONE', (0.029943246745844313, 0.019049, -0.05274360829095243)); +#907 = CARTESIAN_POINT('NONE', (0.029943246745844313, 0.019049, -0.05274360829095244)); #908 = CARTESIAN_POINT('NONE', (0.029940286375673867, 0.019049, -0.05274473691501537)); #909 = CARTESIAN_POINT('NONE', (0.029718252200751773, 0.019049, -0.0528427235672502)); #910 = CARTESIAN_POINT('NONE', (0.029715323706608242, 0.019049, -0.05284401595089931)); @@ -970,7 +970,7 @@ DATA; #954 = CARTESIAN_POINT('NONE', (0.02699254808850517, 0.019049, -0.0569307796546527)); #955 = CARTESIAN_POINT('NONE', (0.026987565714448023, 0.019049, -0.05714714625764285)); #956 = CARTESIAN_POINT('NONE', (0.0269875, 0.019049, -0.05715)); -#957 = B_SPLINE_CURVE_WITH_KNOTS('NONE', 2, (#698, #699, #700, #701, #702, #703, #704, #705, #706, #707, #708, #709, #710, #711, #712, #713, #714, #715, #716, #717, #718, #719, #720, #721, #722, #723, #724, #725, #726, #727, #728, #729, #730, #731, #732, #733, #734, #735, #736, #737, #738, #739, #740, #741, #742, #743, #744, #745, #746, #747, #748, #749, #750, #751, #752, #753, #754, #755, #756, #757, #758, #759, #760, #761, #762, #763, #764, #765, #766, #767, #768, #769, #770, #771, #772, #773, #774, #775, #776, #777, #778, #779, #780, #781, #782, #783, #784, #785, #786, #787, #788, #789, #790, #791, #792, #793, #794, #795, #796, #797, #798, #799, #800, #801, #802, #803, #804, #805, #806, #807, #808, #809, #810, #811, #812, #813, #814, #815, #816, #817, #818, #819, #820, #821, #822, #823, #824, #825, #826, #827, #828, #829, #830, #831, #832, #833, #834, #835, #836, #837, #838, #839, #840, #841, #842, #843, #844, #845, #846, #847, #848, #849, #850, #851, #852, #853, #854, #855, #856, #857, #858, #859, #860, #861, #862, #863, #864, #865, #866, #867, #868, #869, #870, #871, #872, #873, #874, #875, #876, #877, #878, #879, #880, #881, #882, #883, #884, #885, #886, #887, #888, #889, #890, #891, #892, #893, #894, #895, #896, #897, #898, #899, #900, #901, #902, #903, #904, #905, #906, #907, #908, #909, #910, #911, #912, #913, #914, #915, #916, #917, #918, #919, #920, #921, #922, #923, #924, #925, #926, #927, #928, #929, #930, #931, #932, #933, #934, #935, #936, #937, #938, #939, #940, #941, #942, #943, #944, #945, #946, #947, #948, #949, #950, #951, #952, #953, #954, #955, #956), .UNSPECIFIED., .F., .F., (3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3), (-1, -0.9961089494163424, -0.9922178988326849, -0.9883268482490273, -0.9844357976653697, -0.980544747081712, -0.9766536964980544, -0.9727626459143969, -0.9688715953307393, -0.9649805447470817, -0.9610894941634242, -0.9571984435797666, -0.9533073929961089, -0.9494163424124513, -0.9455252918287937, -0.9416342412451362, -0.9377431906614786, -0.933852140077821, -0.9299610894941635, -0.9260700389105059, -0.9221789883268483, -0.9182879377431906, -0.914396887159533, -0.9105058365758755, -0.9066147859922179, -0.9027237354085603, -0.8988326848249028, -0.8949416342412452, -0.8910505836575875, -0.8871595330739299, -0.8832684824902723, -0.8793774319066148, -0.8754863813229572, -0.8715953307392996, -0.867704280155642, -0.8638132295719845, -0.8599221789883269, -0.8560311284046693, -0.8521400778210116, -0.8482490272373541, -0.8443579766536965, -0.8404669260700389, -0.8365758754863813, -0.8326848249027237, -0.8287937743190661, -0.8249027237354085, -0.8210116731517509, -0.8171206225680934, -0.8132295719844358, -0.8093385214007782, -0.8054474708171206, -0.8015564202334631, -0.7976653696498055, -0.7937743190661479, -0.7898832684824902, -0.7859922178988327, -0.7821011673151751, -0.7782101167315175, -0.77431906614786, -0.7704280155642023, -0.7665369649805447, -0.7626459143968871, -0.7587548638132295, -0.754863813229572, -0.7509727626459144, -0.7470817120622568, -0.7431906614785992, -0.7392996108949417, -0.7354085603112841, -0.7315175097276265, -0.7276264591439688, -0.7237354085603113, -0.7198443579766537, -0.7159533073929961, -0.7120622568093385, -0.7081712062256809, -0.7042801556420233, -0.7003891050583657, -0.6964980544747081, -0.6926070038910506, -0.688715953307393, -0.6848249027237354, -0.6809338521400778, -0.6770428015564203, -0.6731517509727627, -0.6692607003891051, -0.6653696498054474, -0.6614785992217899, -0.6575875486381323, -0.6536964980544747, -0.6498054474708171, -0.6459143968871595, -0.6420233463035019, -0.6381322957198443, -0.6342412451361867, -0.6303501945525292, -0.6264591439688716, -0.622568093385214, -0.6186770428015564, -0.6147859922178989, -0.6108949416342413, -0.6070038910505837, -0.603112840466926, -0.5992217898832685, -0.5953307392996109, -0.5914396887159533, -0.5875486381322957, -0.5836575875486381, -0.5797665369649805, -0.5758754863813229, -0.5719844357976653, -0.5680933852140078, -0.5642023346303502, -0.5603112840466926, -0.556420233463035, -0.5525291828793775, -0.5486381322957199, -0.5447470817120623, -0.5408560311284046, -0.5369649805447471, -0.5330739299610895, -0.5291828793774319, -0.5252918287937743, -0.5214007782101167, -0.5175097276264591, -0.5136186770428015, -0.5097276264591439, -0.5058365758754864, -0.5019455252918288, -0.4980544747081712, -0.49416342412451364, -0.49027237354085607, -0.48638132295719844, -0.48249027237354086, -0.4785992217898833, -0.47470817120622566, -0.4708171206225681, -0.4669260700389105, -0.46303501945525294, -0.45914396887159536, -0.45525291828793774, -0.45136186770428016, -0.4474708171206226, -0.44357976653696496, -0.4396887159533074, -0.4357976653696498, -0.43190661478599224, -0.42801556420233466, -0.42412451361867703, -0.42023346303501946, -0.4163424124513619, -0.41245136186770426, -0.4085603112840467, -0.4046692607003891, -0.40077821011673154, -0.39688715953307396, -0.39299610894941633, -0.38910505836575876, -0.3852140077821012, -0.38132295719844356, -0.377431906614786, -0.3735408560311284, -0.36964980544747084, -0.36575875486381326, -0.36186770428015563, -0.35797665369649806, -0.3540856031128405, -0.35019455252918286, -0.3463035019455253, -0.3424124513618677, -0.33852140077821014, -0.33463035019455256, -0.33073929961089493, -0.32684824902723736, -0.3229571984435798, -0.31906614785992216, -0.3151750972762646, -0.311284046692607, -0.30739299610894943, -0.30350194552529186, -0.29961089494163423, -0.29571984435797666, -0.2918287937743191, -0.28793774319066145, -0.2840466926070039, -0.2801556420233463, -0.27626459143968873, -0.27237354085603116, -0.26848249027237353, -0.26459143968871596, -0.2607003891050584, -0.25680933852140075, -0.2529182879377432, -0.2490272373540856, -0.24513618677042803, -0.24124513618677043, -0.23735408560311283, -0.23346303501945526, -0.22957198443579768, -0.22568093385214008, -0.22178988326848248, -0.2178988326848249, -0.21400778210116733, -0.21011673151750973, -0.20622568093385213, -0.20233463035019456, -0.19844357976653698, -0.19455252918287938, -0.19066147859922178, -0.1867704280155642, -0.18287937743190663, -0.17898832684824903, -0.17509727626459143, -0.17120622568093385, -0.16731517509727628, -0.16342412451361868, -0.15953307392996108, -0.1556420233463035, -0.15175097276264593, -0.14785992217898833, -0.14396887159533073, -0.14007782101167315, -0.13618677042801558, -0.13229571984435798, -0.12840466926070038, -0.1245136186770428, -0.12062256809338522, -0.11673151750972763, -0.11284046692607004, -0.10894941634241245, -0.10505836575875487, -0.10116731517509728, -0.09727626459143969, -0.0933852140077821, -0.08949416342412451, -0.08560311284046693, -0.08171206225680934, -0.07782101167315175, -0.07392996108949416, -0.07003891050583658, -0.06614785992217899, -0.0622568093385214, -0.058365758754863814, -0.054474708171206226, -0.05058365758754864, -0.04669260700389105, -0.042801556420233464, -0.038910505836575876, -0.03501945525291829, -0.0311284046692607, -0.027237354085603113, -0.023346303501945526, -0.019455252918287938, -0.01556420233463035, -0.011673151750972763, -0.007782101167315175, -0.0038910505836575876, -0), .UNSPECIFIED.); +#957 = B_SPLINE_CURVE_WITH_KNOTS('NONE', 2, (#698, #699, #700, #701, #702, #703, #704, #705, #706, #707, #708, #709, #710, #711, #712, #713, #714, #715, #716, #717, #718, #719, #720, #721, #722, #723, #724, #725, #726, #727, #728, #729, #730, #731, #732, #733, #734, #735, #736, #737, #738, #739, #740, #741, #742, #743, #744, #745, #746, #747, #748, #749, #750, #751, #752, #753, #754, #755, #756, #757, #758, #759, #760, #761, #762, #763, #764, #765, #766, #767, #768, #769, #770, #771, #772, #773, #774, #775, #776, #777, #778, #779, #780, #781, #782, #783, #784, #785, #786, #787, #788, #789, #790, #791, #792, #793, #794, #795, #796, #797, #798, #799, #800, #801, #802, #803, #804, #805, #806, #807, #808, #809, #810, #811, #812, #813, #814, #815, #816, #817, #818, #819, #820, #821, #822, #823, #824, #825, #826, #827, #828, #829, #830, #831, #832, #833, #834, #835, #836, #837, #838, #839, #840, #841, #842, #843, #844, #845, #846, #847, #848, #849, #850, #851, #852, #853, #854, #855, #856, #857, #858, #859, #860, #861, #862, #863, #864, #865, #866, #867, #868, #869, #870, #871, #872, #873, #874, #875, #876, #877, #878, #879, #880, #881, #882, #883, #884, #885, #886, #887, #888, #889, #890, #891, #892, #893, #894, #895, #896, #897, #898, #899, #900, #901, #902, #903, #904, #905, #906, #907, #908, #909, #910, #911, #912, #913, #914, #915, #916, #917, #918, #919, #920, #921, #922, #923, #924, #925, #926, #927, #928, #929, #930, #931, #932, #933, #934, #935, #936, #937, #938, #939, #940, #941, #942, #943, #944, #945, #946, #947, #948, #949, #950, #951, #952, #953, #954, #955, #956), .UNSPECIFIED., .F., .F., (3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3), (0, 0.0038910505836575876, 0.007782101167315175, 0.011673151750972763, 0.01556420233463035, 0.019455252918287938, 0.023346303501945526, 0.027237354085603113, 0.0311284046692607, 0.03501945525291829, 0.038910505836575876, 0.042801556420233464, 0.04669260700389105, 0.05058365758754864, 0.054474708171206226, 0.058365758754863814, 0.0622568093385214, 0.06614785992217899, 0.07003891050583658, 0.07392996108949416, 0.07782101167315175, 0.08171206225680934, 0.08560311284046693, 0.08949416342412451, 0.0933852140077821, 0.09727626459143969, 0.10116731517509728, 0.10505836575875487, 0.10894941634241245, 0.11284046692607004, 0.11673151750972763, 0.12062256809338522, 0.1245136186770428, 0.12840466926070038, 0.13229571984435798, 0.13618677042801558, 0.14007782101167315, 0.14396887159533073, 0.14785992217898833, 0.15175097276264593, 0.1556420233463035, 0.15953307392996108, 0.16342412451361868, 0.16731517509727628, 0.17120622568093385, 0.17509727626459143, 0.17898832684824903, 0.18287937743190663, 0.1867704280155642, 0.19066147859922178, 0.19455252918287938, 0.19844357976653698, 0.20233463035019456, 0.20622568093385213, 0.21011673151750973, 0.21400778210116733, 0.2178988326848249, 0.22178988326848248, 0.22568093385214008, 0.22957198443579768, 0.23346303501945526, 0.23735408560311283, 0.24124513618677043, 0.24513618677042803, 0.2490272373540856, 0.2529182879377432, 0.25680933852140075, 0.2607003891050584, 0.26459143968871596, 0.26848249027237353, 0.27237354085603116, 0.27626459143968873, 0.2801556420233463, 0.2840466926070039, 0.28793774319066145, 0.2918287937743191, 0.29571984435797666, 0.29961089494163423, 0.30350194552529186, 0.30739299610894943, 0.311284046692607, 0.3151750972762646, 0.31906614785992216, 0.3229571984435798, 0.32684824902723736, 0.33073929961089493, 0.33463035019455256, 0.33852140077821014, 0.3424124513618677, 0.3463035019455253, 0.35019455252918286, 0.3540856031128405, 0.35797665369649806, 0.36186770428015563, 0.36575875486381326, 0.36964980544747084, 0.3735408560311284, 0.377431906614786, 0.38132295719844356, 0.3852140077821012, 0.38910505836575876, 0.39299610894941633, 0.39688715953307396, 0.40077821011673154, 0.4046692607003891, 0.4085603112840467, 0.41245136186770426, 0.4163424124513619, 0.42023346303501946, 0.42412451361867703, 0.42801556420233466, 0.43190661478599224, 0.4357976653696498, 0.4396887159533074, 0.44357976653696496, 0.4474708171206226, 0.45136186770428016, 0.45525291828793774, 0.45914396887159536, 0.46303501945525294, 0.4669260700389105, 0.4708171206225681, 0.47470817120622566, 0.4785992217898833, 0.48249027237354086, 0.48638132295719844, 0.49027237354085607, 0.49416342412451364, 0.4980544747081712, 0.5019455252918288, 0.5058365758754864, 0.5097276264591439, 0.5136186770428015, 0.5175097276264591, 0.5214007782101167, 0.5252918287937743, 0.5291828793774319, 0.5330739299610895, 0.5369649805447471, 0.5408560311284046, 0.5447470817120623, 0.5486381322957199, 0.5525291828793775, 0.556420233463035, 0.5603112840466926, 0.5642023346303502, 0.5680933852140078, 0.5719844357976653, 0.5758754863813229, 0.5797665369649805, 0.5836575875486381, 0.5875486381322957, 0.5914396887159533, 0.5953307392996109, 0.5992217898832685, 0.603112840466926, 0.6070038910505837, 0.6108949416342413, 0.6147859922178989, 0.6186770428015564, 0.622568093385214, 0.6264591439688716, 0.6303501945525292, 0.6342412451361867, 0.6381322957198443, 0.6420233463035019, 0.6459143968871595, 0.6498054474708171, 0.6536964980544747, 0.6575875486381323, 0.6614785992217899, 0.6653696498054474, 0.6692607003891051, 0.6731517509727627, 0.6770428015564203, 0.6809338521400778, 0.6848249027237354, 0.688715953307393, 0.6926070038910506, 0.6964980544747081, 0.7003891050583657, 0.7042801556420233, 0.7081712062256809, 0.7120622568093385, 0.7159533073929961, 0.7198443579766537, 0.7237354085603113, 0.7276264591439688, 0.7315175097276265, 0.7354085603112841, 0.7392996108949417, 0.7431906614785992, 0.7470817120622568, 0.7509727626459144, 0.754863813229572, 0.7587548638132295, 0.7626459143968871, 0.7665369649805447, 0.7704280155642023, 0.77431906614786, 0.7782101167315175, 0.7821011673151751, 0.7859922178988327, 0.7898832684824902, 0.7937743190661479, 0.7976653696498055, 0.8015564202334631, 0.8054474708171206, 0.8093385214007782, 0.8132295719844358, 0.8171206225680934, 0.8210116731517509, 0.8249027237354085, 0.8287937743190661, 0.8326848249027237, 0.8365758754863813, 0.8404669260700389, 0.8443579766536965, 0.8482490272373541, 0.8521400778210116, 0.8560311284046693, 0.8599221789883269, 0.8638132295719845, 0.867704280155642, 0.8715953307392996, 0.8754863813229572, 0.8793774319066148, 0.8832684824902723, 0.8871595330739299, 0.8910505836575875, 0.8949416342412452, 0.8988326848249028, 0.9027237354085603, 0.9066147859922179, 0.9105058365758755, 0.914396887159533, 0.9182879377431906, 0.9221789883268483, 0.9260700389105059, 0.9299610894941635, 0.933852140077821, 0.9377431906614786, 0.9416342412451362, 0.9455252918287937, 0.9494163424124513, 0.9533073929961089, 0.9571984435797666, 0.9610894941634242, 0.9649805447470817, 0.9688715953307393, 0.9727626459143969, 0.9766536964980544, 0.980544747081712, 0.9844357976653697, 0.9883268482490273, 0.9922178988326849, 0.9961089494163424, 1), .UNSPECIFIED.); #958 = DIRECTION('NONE', (0, -1, 0)); #959 = VECTOR('NONE', #958, 1); #960 = CARTESIAN_POINT('NONE', (0.0269875, 0.019051000000000002, -0.05715)); diff --git a/rust/kcl-lib/tests/kcl_samples/a-parametric-bearing-pillow-block/ops.snap b/rust/kcl-lib/tests/kcl_samples/a-parametric-bearing-pillow-block/ops.snap index 7d03fb952..2b889f3dd 100644 --- a/rust/kcl-lib/tests/kcl_samples/a-parametric-bearing-pillow-block/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/a-parametric-bearing-pillow-block/ops.snap @@ -138,19 +138,31 @@ description: Operations executed a-parametric-bearing-pillow-block.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -229,19 +241,31 @@ description: Operations executed a-parametric-bearing-pillow-block.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, diff --git a/rust/kcl-lib/tests/kcl_samples/a-parametric-bearing-pillow-block/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/a-parametric-bearing-pillow-block/program_memory.snap index f99a76ba1..c0c7b50e3 100644 --- a/rust/kcl-lib/tests/kcl_samples/a-parametric-bearing-pillow-block/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/a-parametric-bearing-pillow-block/program_memory.snap @@ -257,30 +257,309 @@ description: Variables in memory after executing a-parametric-bearing-pillow-blo } }, "extrude002": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1262, - 1406, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1262, + 1406, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1262, + 1406, + 0 + ] + }, + "ccw": true, + "center": [ + -1.25, + -2.25 + ], + "from": [ + -0.9, + -2.25 + ], + "radius": 0.35, + "tag": null, + "to": [ + -0.9, + -2.25 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ] + }, + "from": [ + -2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ] + }, + "from": [ + 2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ] + }, + "from": [ + 2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ] + }, + "from": [ + -2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -2.0, + -3.0 + ], + "to": [ + -2.0, + -3.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 971, + 1015, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -0.9, + -2.25 + ], + "to": [ + -0.9, + -2.25 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -288,320 +567,323 @@ description: Variables in memory after executing a-parametric-bearing-pillow-blo 1406, 0 ] - }, - "ccw": true, - "center": [ - -1.25, - -2.25 - ], - "from": [ - -0.9, - -2.25 - ], - "radius": 0.35, - "tag": null, - "to": [ - -0.9, - -2.25 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ] - }, - "from": [ - -2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ] - }, - "from": [ - 2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ] - }, - "from": [ - 2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ] - }, - "from": [ - -2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -2.0, - -3.0 - ], - "to": [ - -2.0, - -3.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 971, - 1015, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -0.9, - -2.25 - ], - "to": [ - -0.9, - -2.25 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1262, - 1406, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.25, + "startCapId": "[uuid]", + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.25, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1262, - 1406, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1262, + 1406, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1262, + 1406, + 0 + ] + }, + "ccw": true, + "center": [ + -1.25, + -2.25 + ], + "from": [ + -0.9, + -2.25 + ], + "radius": 0.35, + "tag": null, + "to": [ + -0.9, + -2.25 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ] + }, + "from": [ + -2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ] + }, + "from": [ + 2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ] + }, + "from": [ + 2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ] + }, + "from": [ + -2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -2.0, + -3.0 + ], + "to": [ + -2.0, + -3.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 971, + 1015, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -0.9, + -2.25 + ], + "to": [ + -0.9, + -2.25 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -609,320 +891,323 @@ description: Variables in memory after executing a-parametric-bearing-pillow-blo 1406, 0 ] - }, - "ccw": true, - "center": [ - -1.25, - -2.25 - ], - "from": [ - -0.9, - -2.25 - ], - "radius": 0.35, - "tag": null, - "to": [ - -0.9, - -2.25 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ] - }, - "from": [ - -2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ] - }, - "from": [ - 2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ] - }, - "from": [ - 2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ] - }, - "from": [ - -2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -2.0, - -3.0 - ], - "to": [ - -2.0, - -3.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 971, - 1015, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -0.9, - -2.25 - ], - "to": [ - -0.9, - -2.25 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1262, - 1406, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.25, + "startCapId": "[uuid]", + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.25, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1262, - 1406, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1262, + 1406, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1262, + 1406, + 0 + ] + }, + "ccw": true, + "center": [ + -1.25, + -2.25 + ], + "from": [ + -0.9, + -2.25 + ], + "radius": 0.35, + "tag": null, + "to": [ + -0.9, + -2.25 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ] + }, + "from": [ + -2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ] + }, + "from": [ + 2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ] + }, + "from": [ + 2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ] + }, + "from": [ + -2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -2.0, + -3.0 + ], + "to": [ + -2.0, + -3.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 971, + 1015, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -0.9, + -2.25 + ], + "to": [ + -0.9, + -2.25 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -930,320 +1215,323 @@ description: Variables in memory after executing a-parametric-bearing-pillow-blo 1406, 0 ] - }, - "ccw": true, - "center": [ - -1.25, - -2.25 - ], - "from": [ - -0.9, - -2.25 - ], - "radius": 0.35, - "tag": null, - "to": [ - -0.9, - -2.25 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ] - }, - "from": [ - -2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ] - }, - "from": [ - 2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ] - }, - "from": [ - 2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ] - }, - "from": [ - -2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -2.0, - -3.0 - ], - "to": [ - -2.0, - -3.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 971, - 1015, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -0.9, - -2.25 - ], - "to": [ - -0.9, - -2.25 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1262, - 1406, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.25, + "startCapId": "[uuid]", + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.25, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1262, - 1406, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1262, + 1406, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1262, + 1406, + 0 + ] + }, + "ccw": true, + "center": [ + -1.25, + -2.25 + ], + "from": [ + -0.9, + -2.25 + ], + "radius": 0.35, + "tag": null, + "to": [ + -0.9, + -2.25 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ] + }, + "from": [ + -2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ] + }, + "from": [ + 2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ] + }, + "from": [ + 2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ] + }, + "from": [ + -2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -2.0, + -3.0 + ], + "to": [ + -2.0, + -3.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 971, + 1015, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -0.9, + -2.25 + ], + "to": [ + -0.9, + -2.25 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -1251,325 +1539,328 @@ description: Variables in memory after executing a-parametric-bearing-pillow-blo 1406, 0 ] - }, - "ccw": true, - "center": [ - -1.25, - -2.25 - ], - "from": [ - -0.9, - -2.25 - ], - "radius": 0.35, - "tag": null, - "to": [ - -0.9, - -2.25 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ] - }, - "from": [ - -2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ] - }, - "from": [ - 2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ] - }, - "from": [ - 2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ] - }, - "from": [ - -2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -2.0, - -3.0 - ], - "to": [ - -2.0, - -3.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 971, - 1015, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -0.9, - -2.25 - ], - "to": [ - -0.9, - -2.25 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1262, - 1406, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.25, + "startCapId": "[uuid]", + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.25, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" } } ] }, "extrude003": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1706, - 1862, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1706, + 1862, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1706, + 1862, + 0 + ] + }, + "ccw": true, + "center": [ + -1.25, + -2.25 + ], + "from": [ + -1.0625, + -2.25 + ], + "radius": 0.1875, + "tag": null, + "to": [ + -1.0625, + -2.25 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ] + }, + "from": [ + -2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ] + }, + "from": [ + 2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ] + }, + "from": [ + 2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ] + }, + "from": [ + -2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -2.0, + -3.0 + ], + "to": [ + -2.0, + -3.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 971, + 1015, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -1.0625, + -2.25 + ], + "to": [ + -1.0625, + -2.25 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -1577,320 +1868,323 @@ description: Variables in memory after executing a-parametric-bearing-pillow-blo 1862, 0 ] - }, - "ccw": true, - "center": [ - -1.25, - -2.25 - ], - "from": [ - -1.0625, - -2.25 - ], - "radius": 0.1875, - "tag": null, - "to": [ - -1.0625, - -2.25 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ] - }, - "from": [ - -2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ] - }, - "from": [ - 2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ] - }, - "from": [ - 2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ] - }, - "from": [ - -2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -2.0, - -3.0 - ], - "to": [ - -2.0, - -3.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 971, - 1015, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -1.0625, - -2.25 - ], - "to": [ - -1.0625, - -2.25 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1706, - 1862, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.75, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.75, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1706, - 1862, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1706, + 1862, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1706, + 1862, + 0 + ] + }, + "ccw": true, + "center": [ + -1.25, + -2.25 + ], + "from": [ + -1.0625, + -2.25 + ], + "radius": 0.1875, + "tag": null, + "to": [ + -1.0625, + -2.25 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ] + }, + "from": [ + -2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ] + }, + "from": [ + 2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ] + }, + "from": [ + 2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ] + }, + "from": [ + -2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -2.0, + -3.0 + ], + "to": [ + -2.0, + -3.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 971, + 1015, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -1.0625, + -2.25 + ], + "to": [ + -1.0625, + -2.25 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -1898,320 +2192,323 @@ description: Variables in memory after executing a-parametric-bearing-pillow-blo 1862, 0 ] - }, - "ccw": true, - "center": [ - -1.25, - -2.25 - ], - "from": [ - -1.0625, - -2.25 - ], - "radius": 0.1875, - "tag": null, - "to": [ - -1.0625, - -2.25 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ] - }, - "from": [ - -2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ] - }, - "from": [ - 2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ] - }, - "from": [ - 2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ] - }, - "from": [ - -2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -2.0, - -3.0 - ], - "to": [ - -2.0, - -3.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 971, - 1015, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -1.0625, - -2.25 - ], - "to": [ - -1.0625, - -2.25 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1706, - 1862, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.75, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.75, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1706, - 1862, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1706, + 1862, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1706, + 1862, + 0 + ] + }, + "ccw": true, + "center": [ + -1.25, + -2.25 + ], + "from": [ + -1.0625, + -2.25 + ], + "radius": 0.1875, + "tag": null, + "to": [ + -1.0625, + -2.25 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ] + }, + "from": [ + -2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ] + }, + "from": [ + 2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ] + }, + "from": [ + 2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ] + }, + "from": [ + -2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -2.0, + -3.0 + ], + "to": [ + -2.0, + -3.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 971, + 1015, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -1.0625, + -2.25 + ], + "to": [ + -1.0625, + -2.25 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -2219,320 +2516,323 @@ description: Variables in memory after executing a-parametric-bearing-pillow-blo 1862, 0 ] - }, - "ccw": true, - "center": [ - -1.25, - -2.25 - ], - "from": [ - -1.0625, - -2.25 - ], - "radius": 0.1875, - "tag": null, - "to": [ - -1.0625, - -2.25 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ] - }, - "from": [ - -2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ] - }, - "from": [ - 2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ] - }, - "from": [ - 2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ] - }, - "from": [ - -2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -2.0, - -3.0 - ], - "to": [ - -2.0, - -3.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 971, - 1015, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -1.0625, - -2.25 - ], - "to": [ - -1.0625, - -2.25 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1706, - 1862, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.75, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.75, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1706, - 1862, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1706, + 1862, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1706, + 1862, + 0 + ] + }, + "ccw": true, + "center": [ + -1.25, + -2.25 + ], + "from": [ + -1.0625, + -2.25 + ], + "radius": 0.1875, + "tag": null, + "to": [ + -1.0625, + -2.25 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1021, + 1065, + 0 + ] + }, + "from": [ + -2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1071, + 1114, + 0 + ] + }, + "from": [ + 2.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1120, + 1164, + 0 + ] + }, + "from": [ + 2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1170, + 1177, + 0 + ] + }, + "from": [ + -2.0, + 3.0 + ], + "tag": null, + "to": [ + -2.0, + -3.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -2.0, + -3.0 + ], + "to": [ + -2.0, + -3.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 971, + 1015, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -1.0625, + -2.25 + ], + "to": [ + -1.0625, + -2.25 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -2540,296 +2840,20 @@ description: Variables in memory after executing a-parametric-bearing-pillow-blo 1862, 0 ] - }, - "ccw": true, - "center": [ - -1.25, - -2.25 - ], - "from": [ - -1.0625, - -2.25 - ], - "radius": 0.1875, - "tag": null, - "to": [ - -1.0625, - -2.25 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1021, - 1065, - 0 - ] - }, - "from": [ - -2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1071, - 1114, - 0 - ] - }, - "from": [ - 2.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1120, - 1164, - 0 - ] - }, - "from": [ - 2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1170, - 1177, - 0 - ] - }, - "from": [ - -2.0, - 3.0 - ], - "tag": null, - "to": [ - -2.0, - -3.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -2.0, - -3.0 - ], - "to": [ - -2.0, - -3.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 971, - 1015, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -1.0625, - -2.25 - ], - "to": [ - -1.0625, - -2.25 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1706, - 1862, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.75, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.75, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/ball-bearing/ops.snap b/rust/kcl-lib/tests/kcl_samples/ball-bearing/ops.snap index eb08e2876..9bac3d5f0 100644 --- a/rust/kcl-lib/tests/kcl_samples/ball-bearing/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/ball-bearing/ops.snap @@ -185,7 +185,7 @@ description: Operations executed ball-bearing.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -445,7 +445,7 @@ description: Operations executed ball-bearing.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -693,7 +693,7 @@ description: Operations executed ball-bearing.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { diff --git a/rust/kcl-lib/tests/kcl_samples/ball-bearing/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/ball-bearing/program_memory.snap index ec304448f..08ffff7e1 100644 --- a/rust/kcl-lib/tests/kcl_samples/ball-bearing/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/ball-bearing/program_memory.snap @@ -4,1496 +4,1526 @@ description: Variables in memory after executing ball-bearing.kcl --- { "balls": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - 0.001 - ], - "from": [ - 0.475, - 0.001 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.725, - 0.001 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ] - }, - "from": [ - 0.725, - 0.001 - ], - "tag": null, - "to": [ - 0.475, - 0.001 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.475, - 0.001 - ], - "to": [ - 0.475, - 0.001 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1083, - 1139, + 1145, + 1237, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1145, + 1237, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + 0.001 + ], + "from": [ + 0.475, + 0.001 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.725, + 0.001 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ] + }, + "from": [ + 0.725, + 0.001 + ], + "tag": null, + "to": [ + 0.475, + 0.001 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.475, + 0.001 + ], + "to": [ + 0.475, + 0.001 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1083, + 1139, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - 0.001 - ], - "from": [ - 0.475, - 0.001 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.725, - 0.001 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ] - }, - "from": [ - 0.725, - 0.001 - ], - "tag": null, - "to": [ - 0.475, - 0.001 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.475, - 0.001 - ], - "to": [ - 0.475, - 0.001 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1083, - 1139, + 1145, + 1237, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1145, + 1237, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + 0.001 + ], + "from": [ + 0.475, + 0.001 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.725, + 0.001 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ] + }, + "from": [ + 0.725, + 0.001 + ], + "tag": null, + "to": [ + 0.475, + 0.001 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.475, + 0.001 + ], + "to": [ + 0.475, + 0.001 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1083, + 1139, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - 0.001 - ], - "from": [ - 0.475, - 0.001 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.725, - 0.001 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ] - }, - "from": [ - 0.725, - 0.001 - ], - "tag": null, - "to": [ - 0.475, - 0.001 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.475, - 0.001 - ], - "to": [ - 0.475, - 0.001 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1083, - 1139, + 1145, + 1237, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1145, + 1237, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + 0.001 + ], + "from": [ + 0.475, + 0.001 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.725, + 0.001 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ] + }, + "from": [ + 0.725, + 0.001 + ], + "tag": null, + "to": [ + 0.475, + 0.001 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.475, + 0.001 + ], + "to": [ + 0.475, + 0.001 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1083, + 1139, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - 0.001 - ], - "from": [ - 0.475, - 0.001 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.725, - 0.001 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ] - }, - "from": [ - 0.725, - 0.001 - ], - "tag": null, - "to": [ - 0.475, - 0.001 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.475, - 0.001 - ], - "to": [ - 0.475, - 0.001 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1083, - 1139, + 1145, + 1237, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1145, + 1237, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + 0.001 + ], + "from": [ + 0.475, + 0.001 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.725, + 0.001 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ] + }, + "from": [ + 0.725, + 0.001 + ], + "tag": null, + "to": [ + 0.475, + 0.001 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.475, + 0.001 + ], + "to": [ + 0.475, + 0.001 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1083, + 1139, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - 0.001 - ], - "from": [ - 0.475, - 0.001 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.725, - 0.001 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ] - }, - "from": [ - 0.725, - 0.001 - ], - "tag": null, - "to": [ - 0.475, - 0.001 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.475, - 0.001 - ], - "to": [ - 0.475, - 0.001 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1083, - 1139, + 1145, + 1237, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1145, + 1237, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + 0.001 + ], + "from": [ + 0.475, + 0.001 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.725, + 0.001 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ] + }, + "from": [ + 0.725, + 0.001 + ], + "tag": null, + "to": [ + 0.475, + 0.001 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.475, + 0.001 + ], + "to": [ + 0.475, + 0.001 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1083, + 1139, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - 0.001 - ], - "from": [ - 0.475, - 0.001 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.725, - 0.001 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ] - }, - "from": [ - 0.725, - 0.001 - ], - "tag": null, - "to": [ - 0.475, - 0.001 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.475, - 0.001 - ], - "to": [ - 0.475, - 0.001 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1083, - 1139, + 1145, + 1237, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1145, + 1237, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + 0.001 + ], + "from": [ + 0.475, + 0.001 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.725, + 0.001 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ] + }, + "from": [ + 0.725, + 0.001 + ], + "tag": null, + "to": [ + 0.475, + 0.001 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.475, + 0.001 + ], + "to": [ + 0.475, + 0.001 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1083, + 1139, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - 0.001 - ], - "from": [ - 0.475, - 0.001 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.725, - 0.001 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ] - }, - "from": [ - 0.725, - 0.001 - ], - "tag": null, - "to": [ - 0.475, - 0.001 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.475, - 0.001 - ], - "to": [ - 0.475, - 0.001 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1083, - 1139, + 1145, + 1237, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1145, + 1237, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + 0.001 + ], + "from": [ + 0.475, + 0.001 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.725, + 0.001 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ] + }, + "from": [ + 0.725, + 0.001 + ], + "tag": null, + "to": [ + 0.475, + 0.001 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.475, + 0.001 + ], + "to": [ + 0.475, + 0.001 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1083, + 1139, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - 0.001 - ], - "from": [ - 0.475, - 0.001 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.725, - 0.001 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ] - }, - "from": [ - 0.725, - 0.001 - ], - "tag": null, - "to": [ - 0.475, - 0.001 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.475, - 0.001 - ], - "to": [ - 0.475, - 0.001 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1083, - 1139, + 1145, + 1237, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1145, + 1237, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + 0.001 + ], + "from": [ + 0.475, + 0.001 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.725, + 0.001 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ] + }, + "from": [ + 0.725, + 0.001 + ], + "tag": null, + "to": [ + 0.475, + 0.001 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.475, + 0.001 + ], + "to": [ + 0.475, + 0.001 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1083, + 1139, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - 0.001 - ], - "from": [ - 0.475, - 0.001 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.725, - 0.001 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ] - }, - "from": [ - 0.725, - 0.001 - ], - "tag": null, - "to": [ - 0.475, - 0.001 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.475, - 0.001 - ], - "to": [ - 0.475, - 0.001 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1083, - 1139, + 1145, + 1237, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1145, + 1237, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + 0.001 + ], + "from": [ + 0.475, + 0.001 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.725, + 0.001 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ] + }, + "from": [ + 0.725, + 0.001 + ], + "tag": null, + "to": [ + 0.475, + 0.001 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.475, + 0.001 + ], + "to": [ + 0.475, + 0.001 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1083, + 1139, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1145, - 1237, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - 0.001 - ], - "from": [ - 0.475, - 0.001 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.725, - 0.001 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1243, - 1250, - 0 - ] - }, - "from": [ - 0.725, - 0.001 - ], - "tag": null, - "to": [ - 0.475, - 0.001 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.475, - 0.001 - ], - "to": [ - 0.475, - 0.001 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1083, - 1139, + 1145, + 1237, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1145, + 1237, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + 0.001 + ], + "from": [ + 0.475, + 0.001 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.725, + 0.001 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1243, + 1250, + 0 + ] + }, + "from": [ + 0.725, + 0.001 + ], + "tag": null, + "to": [ + 0.475, + 0.001 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.475, + 0.001 + ], + "to": [ + 0.475, + 0.001 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1083, + 1139, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } } ] @@ -1616,2176 +1646,2206 @@ description: Variables in memory after executing ball-bearing.kcl } }, "chainHead": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - -0.0 - ], - "from": [ - 0.5375, - 0.1083 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.6625, - 0.1083 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ] - }, - "from": [ - 0.6625, - 0.1083 - ], - "tag": null, - "to": [ - 0.6625, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ] - }, - "from": [ - 0.6625, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ] - }, - "from": [ - 0.5375, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1083 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.5375, - 0.1083 - ], - "to": [ - 0.5375, - 0.1083 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1627, - 1760, + 1766, + 1859, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1766, + 1859, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + -0.0 + ], + "from": [ + 0.5375, + 0.1083 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.6625, + 0.1083 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ] + }, + "from": [ + 0.6625, + 0.1083 + ], + "tag": null, + "to": [ + 0.6625, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ] + }, + "from": [ + 0.6625, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ] + }, + "from": [ + 0.5375, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1083 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.5375, + 0.1083 + ], + "to": [ + 0.5375, + 0.1083 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1627, + 1760, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - -0.0 - ], - "from": [ - 0.5375, - 0.1083 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.6625, - 0.1083 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ] - }, - "from": [ - 0.6625, - 0.1083 - ], - "tag": null, - "to": [ - 0.6625, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ] - }, - "from": [ - 0.6625, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ] - }, - "from": [ - 0.5375, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1083 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.5375, - 0.1083 - ], - "to": [ - 0.5375, - 0.1083 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1627, - 1760, + 1766, + 1859, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1766, + 1859, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + -0.0 + ], + "from": [ + 0.5375, + 0.1083 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.6625, + 0.1083 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ] + }, + "from": [ + 0.6625, + 0.1083 + ], + "tag": null, + "to": [ + 0.6625, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ] + }, + "from": [ + 0.6625, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ] + }, + "from": [ + 0.5375, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1083 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.5375, + 0.1083 + ], + "to": [ + 0.5375, + 0.1083 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1627, + 1760, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - -0.0 - ], - "from": [ - 0.5375, - 0.1083 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.6625, - 0.1083 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ] - }, - "from": [ - 0.6625, - 0.1083 - ], - "tag": null, - "to": [ - 0.6625, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ] - }, - "from": [ - 0.6625, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ] - }, - "from": [ - 0.5375, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1083 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.5375, - 0.1083 - ], - "to": [ - 0.5375, - 0.1083 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1627, - 1760, + 1766, + 1859, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1766, + 1859, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + -0.0 + ], + "from": [ + 0.5375, + 0.1083 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.6625, + 0.1083 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ] + }, + "from": [ + 0.6625, + 0.1083 + ], + "tag": null, + "to": [ + 0.6625, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ] + }, + "from": [ + 0.6625, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ] + }, + "from": [ + 0.5375, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1083 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.5375, + 0.1083 + ], + "to": [ + 0.5375, + 0.1083 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1627, + 1760, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - -0.0 - ], - "from": [ - 0.5375, - 0.1083 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.6625, - 0.1083 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ] - }, - "from": [ - 0.6625, - 0.1083 - ], - "tag": null, - "to": [ - 0.6625, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ] - }, - "from": [ - 0.6625, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ] - }, - "from": [ - 0.5375, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1083 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.5375, - 0.1083 - ], - "to": [ - 0.5375, - 0.1083 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1627, - 1760, + 1766, + 1859, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1766, + 1859, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + -0.0 + ], + "from": [ + 0.5375, + 0.1083 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.6625, + 0.1083 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ] + }, + "from": [ + 0.6625, + 0.1083 + ], + "tag": null, + "to": [ + 0.6625, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ] + }, + "from": [ + 0.6625, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ] + }, + "from": [ + 0.5375, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1083 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.5375, + 0.1083 + ], + "to": [ + 0.5375, + 0.1083 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1627, + 1760, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - -0.0 - ], - "from": [ - 0.5375, - 0.1083 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.6625, - 0.1083 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ] - }, - "from": [ - 0.6625, - 0.1083 - ], - "tag": null, - "to": [ - 0.6625, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ] - }, - "from": [ - 0.6625, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ] - }, - "from": [ - 0.5375, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1083 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.5375, - 0.1083 - ], - "to": [ - 0.5375, - 0.1083 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1627, - 1760, + 1766, + 1859, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1766, + 1859, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + -0.0 + ], + "from": [ + 0.5375, + 0.1083 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.6625, + 0.1083 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ] + }, + "from": [ + 0.6625, + 0.1083 + ], + "tag": null, + "to": [ + 0.6625, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ] + }, + "from": [ + 0.6625, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ] + }, + "from": [ + 0.5375, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1083 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.5375, + 0.1083 + ], + "to": [ + 0.5375, + 0.1083 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1627, + 1760, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - -0.0 - ], - "from": [ - 0.5375, - 0.1083 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.6625, - 0.1083 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ] - }, - "from": [ - 0.6625, - 0.1083 - ], - "tag": null, - "to": [ - 0.6625, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ] - }, - "from": [ - 0.6625, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ] - }, - "from": [ - 0.5375, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1083 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.5375, - 0.1083 - ], - "to": [ - 0.5375, - 0.1083 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1627, - 1760, + 1766, + 1859, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1766, + 1859, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + -0.0 + ], + "from": [ + 0.5375, + 0.1083 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.6625, + 0.1083 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ] + }, + "from": [ + 0.6625, + 0.1083 + ], + "tag": null, + "to": [ + 0.6625, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ] + }, + "from": [ + 0.6625, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ] + }, + "from": [ + 0.5375, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1083 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.5375, + 0.1083 + ], + "to": [ + 0.5375, + 0.1083 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1627, + 1760, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - -0.0 - ], - "from": [ - 0.5375, - 0.1083 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.6625, - 0.1083 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ] - }, - "from": [ - 0.6625, - 0.1083 - ], - "tag": null, - "to": [ - 0.6625, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ] - }, - "from": [ - 0.6625, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ] - }, - "from": [ - 0.5375, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1083 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.5375, - 0.1083 - ], - "to": [ - 0.5375, - 0.1083 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1627, - 1760, + 1766, + 1859, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1766, + 1859, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + -0.0 + ], + "from": [ + 0.5375, + 0.1083 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.6625, + 0.1083 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ] + }, + "from": [ + 0.6625, + 0.1083 + ], + "tag": null, + "to": [ + 0.6625, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ] + }, + "from": [ + 0.6625, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ] + }, + "from": [ + 0.5375, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1083 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.5375, + 0.1083 + ], + "to": [ + 0.5375, + 0.1083 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1627, + 1760, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - -0.0 - ], - "from": [ - 0.5375, - 0.1083 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.6625, - 0.1083 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ] - }, - "from": [ - 0.6625, - 0.1083 - ], - "tag": null, - "to": [ - 0.6625, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ] - }, - "from": [ - 0.6625, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ] - }, - "from": [ - 0.5375, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1083 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.5375, - 0.1083 - ], - "to": [ - 0.5375, - 0.1083 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1627, - 1760, + 1766, + 1859, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1766, + 1859, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + -0.0 + ], + "from": [ + 0.5375, + 0.1083 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.6625, + 0.1083 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ] + }, + "from": [ + 0.6625, + 0.1083 + ], + "tag": null, + "to": [ + 0.6625, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ] + }, + "from": [ + 0.6625, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ] + }, + "from": [ + 0.5375, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1083 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.5375, + 0.1083 + ], + "to": [ + 0.5375, + 0.1083 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1627, + 1760, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - -0.0 - ], - "from": [ - 0.5375, - 0.1083 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.6625, - 0.1083 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ] - }, - "from": [ - 0.6625, - 0.1083 - ], - "tag": null, - "to": [ - 0.6625, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ] - }, - "from": [ - 0.6625, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ] - }, - "from": [ - 0.5375, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1083 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.5375, - 0.1083 - ], - "to": [ - 0.5375, - 0.1083 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1627, - 1760, + 1766, + 1859, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1766, + 1859, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + -0.0 + ], + "from": [ + 0.5375, + 0.1083 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.6625, + 0.1083 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ] + }, + "from": [ + 0.6625, + 0.1083 + ], + "tag": null, + "to": [ + 0.6625, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ] + }, + "from": [ + 0.6625, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ] + }, + "from": [ + 0.5375, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1083 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.5375, + 0.1083 + ], + "to": [ + 0.5375, + 0.1083 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1627, + 1760, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1766, - 1859, - 0 - ] - }, - "ccw": false, - "center": [ - 0.6, - -0.0 - ], - "from": [ - 0.5375, - 0.1083 - ], - "radius": 0.125, - "tag": null, - "to": [ - 0.6625, - 0.1083 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1865, - 1896, - 0 - ] - }, - "from": [ - 0.6625, - 0.1083 - ], - "tag": null, - "to": [ - 0.6625, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1902, - 1930, - 0 - ] - }, - "from": [ - 0.6625, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1936, - 1943, - 0 - ] - }, - "from": [ - 0.5375, - 0.1395 - ], - "tag": null, - "to": [ - 0.5375, - 0.1083 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.5375, - 0.1083 - ], - "to": [ - 0.5375, - 0.1083 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1627, - 1760, + 1766, + 1859, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1766, + 1859, + 0 + ] + }, + "ccw": false, + "center": [ + 0.6, + -0.0 + ], + "from": [ + 0.5375, + 0.1083 + ], + "radius": 0.125, + "tag": null, + "to": [ + 0.6625, + 0.1083 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1865, + 1896, + 0 + ] + }, + "from": [ + 0.6625, + 0.1083 + ], + "tag": null, + "to": [ + 0.6625, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1902, + 1930, + 0 + ] + }, + "from": [ + 0.6625, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1936, + 1943, + 0 + ] + }, + "from": [ + 0.5375, + 0.1395 + ], + "tag": null, + "to": [ + 0.5375, + 0.1083 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.5375, + 0.1083 + ], + "to": [ + 0.5375, + 0.1083 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1627, + 1760, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } } ] @@ -4187,30 +4247,103 @@ description: Variables in memory after executing ball-bearing.kcl } }, "linkRevolve": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.6313, + 0.0 + ], + "radius": 0.03125, + "tag": null, + "to": [ + 0.6313, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.6313, + 0.0 + ], + "to": [ + 0.6313, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -4218,114 +4351,117 @@ description: Variables in memory after executing ball-bearing.kcl 2425, 0 ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 - ], - "from": [ - 0.6313, - 0.0 - ], - "radius": 0.03125, - "tag": null, - "to": [ - 0.6313, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.6313, - 0.0 - ], - "to": [ - 0.6313, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.6313, + 0.0 + ], + "radius": 0.03125, + "tag": null, + "to": [ + 0.6313, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.6313, + 0.0 + ], + "to": [ + 0.6313, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -4333,114 +4469,117 @@ description: Variables in memory after executing ball-bearing.kcl 2425, 0 ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 - ], - "from": [ - 0.6313, - 0.0 - ], - "radius": 0.03125, - "tag": null, - "to": [ - 0.6313, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.6313, - 0.0 - ], - "to": [ - 0.6313, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.6313, + 0.0 + ], + "radius": 0.03125, + "tag": null, + "to": [ + 0.6313, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.6313, + 0.0 + ], + "to": [ + 0.6313, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -4448,114 +4587,117 @@ description: Variables in memory after executing ball-bearing.kcl 2425, 0 ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 - ], - "from": [ - 0.6313, - 0.0 - ], - "radius": 0.03125, - "tag": null, - "to": [ - 0.6313, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.6313, - 0.0 - ], - "to": [ - 0.6313, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.6313, + 0.0 + ], + "radius": 0.03125, + "tag": null, + "to": [ + 0.6313, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.6313, + 0.0 + ], + "to": [ + 0.6313, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -4563,114 +4705,117 @@ description: Variables in memory after executing ball-bearing.kcl 2425, 0 ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 - ], - "from": [ - 0.6313, - 0.0 - ], - "radius": 0.03125, - "tag": null, - "to": [ - 0.6313, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.6313, - 0.0 - ], - "to": [ - 0.6313, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.6313, + 0.0 + ], + "radius": 0.03125, + "tag": null, + "to": [ + 0.6313, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.6313, + 0.0 + ], + "to": [ + 0.6313, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -4678,114 +4823,117 @@ description: Variables in memory after executing ball-bearing.kcl 2425, 0 ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 - ], - "from": [ - 0.6313, - 0.0 - ], - "radius": 0.03125, - "tag": null, - "to": [ - 0.6313, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.6313, - 0.0 - ], - "to": [ - 0.6313, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.6313, + 0.0 + ], + "radius": 0.03125, + "tag": null, + "to": [ + 0.6313, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.6313, + 0.0 + ], + "to": [ + 0.6313, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -4793,114 +4941,117 @@ description: Variables in memory after executing ball-bearing.kcl 2425, 0 ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 - ], - "from": [ - 0.6313, - 0.0 - ], - "radius": 0.03125, - "tag": null, - "to": [ - 0.6313, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.6313, - 0.0 - ], - "to": [ - 0.6313, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.6313, + 0.0 + ], + "radius": 0.03125, + "tag": null, + "to": [ + 0.6313, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.6313, + 0.0 + ], + "to": [ + 0.6313, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -4908,114 +5059,117 @@ description: Variables in memory after executing ball-bearing.kcl 2425, 0 ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 - ], - "from": [ - 0.6313, - 0.0 - ], - "radius": 0.03125, - "tag": null, - "to": [ - 0.6313, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.6313, - 0.0 - ], - "to": [ - 0.6313, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.6313, + 0.0 + ], + "radius": 0.03125, + "tag": null, + "to": [ + 0.6313, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.6313, + 0.0 + ], + "to": [ + 0.6313, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -5023,114 +5177,117 @@ description: Variables in memory after executing ball-bearing.kcl 2425, 0 ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 - ], - "from": [ - 0.6313, - 0.0 - ], - "radius": 0.03125, - "tag": null, - "to": [ - 0.6313, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.6313, - 0.0 - ], - "to": [ - 0.6313, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.6313, + 0.0 + ], + "radius": 0.03125, + "tag": null, + "to": [ + 0.6313, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.6313, + 0.0 + ], + "to": [ + 0.6313, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -5138,114 +5295,117 @@ description: Variables in memory after executing ball-bearing.kcl 2425, 0 ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 - ], - "from": [ - 0.6313, - 0.0 - ], - "radius": 0.03125, - "tag": null, - "to": [ - 0.6313, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.6313, - 0.0 - ], - "to": [ - 0.6313, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2284, + 2425, + 0 + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.6313, + 0.0 + ], + "radius": 0.03125, + "tag": null, + "to": [ + 0.6313, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.6313, + 0.0 + ], + "to": [ + 0.6313, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -5253,90 +5413,20 @@ description: Variables in memory after executing ball-bearing.kcl 2425, 0 ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 - ], - "from": [ - 0.6313, - 0.0 - ], - "radius": 0.03125, - "tag": null, - "to": [ - 0.6313, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.6313, - 0.0 - ], - "to": [ - 0.6313, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2284, - 2425, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/bench/ops.snap b/rust/kcl-lib/tests/kcl_samples/bench/ops.snap index a213bb382..ede76421d 100644 --- a/rust/kcl-lib/tests/kcl_samples/bench/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/bench/ops.snap @@ -1325,16 +1325,25 @@ description: Operations executed bench.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1474,13 +1483,19 @@ description: Operations executed bench.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, diff --git a/rust/kcl-lib/tests/kcl_samples/bracket/ops.snap b/rust/kcl-lib/tests/kcl_samples/bracket/ops.snap index 6878b1cc0..f364a4bec 100644 --- a/rust/kcl-lib/tests/kcl_samples/bracket/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/bracket/ops.snap @@ -377,19 +377,31 @@ description: Operations executed bracket.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -463,13 +475,19 @@ description: Operations executed bracket.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, diff --git a/rust/kcl-lib/tests/kcl_samples/bracket/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/bracket/program_memory.snap index 905bce547..9d6327d60 100644 --- a/rust/kcl-lib/tests/kcl_samples/bracket/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/bracket/program_memory.snap @@ -574,197 +574,93 @@ description: Variables in memory after executing bracket.kcl } }, "sketch002": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1906, - 1981, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1906, - 1981, - 0 - ] - }, - "ccw": true, - "center": [ - -1.25, - 1.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1906, + 1981, + 0 ], - "from": [ - -1.0, - 1.0 - ], - "radius": 0.25, "tag": null, - "to": [ - -1.0, - 1.0 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg03", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1906, + 1981, + 0 + ] + }, + "ccw": true, + "center": [ + -1.25, + 1.0 + ], + "from": [ + -1.0, + 1.0 + ], + "radius": 0.25, + "tag": null, + "to": [ + -1.0, + 1.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1117, - 1170, - 0 - ], - "tag": { - "end": 1169, - "start": 1163, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1176, - 1215, - 0 - ], - "tag": { - "end": 1214, - "start": 1208, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1221, - 1263, - 0 - ], - "tag": { - "end": 1262, - "start": 1256, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1269, - 1310, - 0 - ], - "tag": { - "end": 1309, - "start": 1303, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1316, - 1355, - 0 - ], - "tag": { - "end": 1354, - "start": 1348, - "type": "TagDeclarator", - "value": "seg05" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1361, - 1431, - 0 - ], - "tag": { - "end": 1430, - "start": 1424, - "type": "TagDeclarator", - "value": "seg06" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg03", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1117, - 1170, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1117, + 1170, + 0 ], "tag": { "end": 1169, @@ -772,27 +668,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - 4.6487, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1176, - 1215, - 0 - ] - }, - "from": [ - 4.6487, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1176, + 1215, + 0 ], "tag": { "end": 1214, @@ -800,27 +684,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg02" }, - "to": [ - 4.6487, - 0.3513 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1221, - 1263, - 0 - ] - }, - "from": [ - 4.6487, - 0.3513 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1221, + 1263, + 0 ], "tag": { "end": 1262, @@ -828,27 +700,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg03" }, - "to": [ - -0.3513, - 0.3513 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1269, - 1310, - 0 - ] - }, - "from": [ - -0.3513, - 0.3513 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1269, + 1310, + 0 ], "tag": { "end": 1309, @@ -856,27 +716,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg04" }, - "to": [ - -0.3513, - -1.6487 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1316, - 1355, - 0 - ] - }, - "from": [ - -0.3513, - -1.6487 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1316, + 1355, + 0 ], "tag": { "end": 1354, @@ -884,27 +732,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg05" }, - "to": [ - -0.0, - -1.6487 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1361, - 1431, - 0 - ] - }, - "from": [ - -0.0, - -1.6487 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1361, + 1431, + 0 ], "tag": { "end": 1430, @@ -912,401 +748,464 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg06" }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1117, + 1170, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 1169, + "start": 1163, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 4.6487, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1176, + 1215, + 0 + ] + }, + "from": [ + 4.6487, + 0.0 + ], + "tag": { + "end": 1214, + "start": 1208, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 4.6487, + 0.3513 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1221, + 1263, + 0 + ] + }, + "from": [ + 4.6487, + 0.3513 + ], + "tag": { + "end": 1262, + "start": 1256, + "type": "TagDeclarator", + "value": "seg03" + }, + "to": [ + -0.3513, + 0.3513 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1269, + 1310, + 0 + ] + }, + "from": [ + -0.3513, + 0.3513 + ], + "tag": { + "end": 1309, + "start": 1303, + "type": "TagDeclarator", + "value": "seg04" + }, + "to": [ + -0.3513, + -1.6487 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1316, + 1355, + 0 + ] + }, + "from": [ + -0.3513, + -1.6487 + ], + "tag": { + "end": 1354, + "start": 1348, + "type": "TagDeclarator", + "value": "seg05" + }, + "to": [ + -0.0, + -1.6487 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1361, + 1431, + 0 + ] + }, + "from": [ + -0.0, + -1.6487 + ], + "tag": { + "end": 1430, + "start": 1424, + "type": "TagDeclarator", + "value": "seg06" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1437, + 1444, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1437, - 1444, - 0 - ] - }, + "start": { "from": [ 0.0, 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1111, + 0 + ] } + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + }, + "seg02": { + "type": "TagIdentifier", + "value": "seg02" + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03" + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04" + }, + "seg05": { + "type": "TagIdentifier", + "value": "seg05" + }, + "seg06": { + "type": "TagIdentifier", + "value": "seg06" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 6.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.601324026261472, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1111, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - }, - "seg02": { - "type": "TagIdentifier", - "value": "seg02" - }, - "seg03": { - "type": "TagIdentifier", - "value": "seg03" - }, - "seg04": { - "type": "TagIdentifier", - "value": "seg04" - }, - "seg05": { - "type": "TagIdentifier", - "value": "seg05" - }, - "seg06": { - "type": "TagIdentifier", - "value": "seg06" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } }, - "height": 6.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.601324026261472, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - } - ], "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -1.0, - 1.0 - ], - "to": [ - -1.0, - 1.0 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -1.0, + 1.0 + ], + "to": [ + -1.0, + 1.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1906, + 1981, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1906, - 1981, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.361324026261472, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -0.361324026261472, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1906, - 1981, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1906, - 1981, - 0 - ] - }, - "ccw": true, - "center": [ - -1.25, - 1.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1906, + 1981, + 0 ], - "from": [ - -1.0, - 1.0 - ], - "radius": 0.25, "tag": null, - "to": [ - -1.0, - 1.0 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg03", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1906, + 1981, + 0 + ] + }, + "ccw": true, + "center": [ + -1.25, + 1.0 + ], + "from": [ + -1.0, + 1.0 + ], + "radius": 0.25, + "tag": null, + "to": [ + -1.0, + 1.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1117, - 1170, - 0 - ], - "tag": { - "end": 1169, - "start": 1163, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1176, - 1215, - 0 - ], - "tag": { - "end": 1214, - "start": 1208, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1221, - 1263, - 0 - ], - "tag": { - "end": 1262, - "start": 1256, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1269, - 1310, - 0 - ], - "tag": { - "end": 1309, - "start": 1303, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1316, - 1355, - 0 - ], - "tag": { - "end": 1354, - "start": 1348, - "type": "TagDeclarator", - "value": "seg05" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1361, - 1431, - 0 - ], - "tag": { - "end": 1430, - "start": 1424, - "type": "TagDeclarator", - "value": "seg06" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg03", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1117, - 1170, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1117, + 1170, + 0 ], "tag": { "end": 1169, @@ -1314,27 +1213,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - 4.6487, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1176, - 1215, - 0 - ] - }, - "from": [ - 4.6487, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1176, + 1215, + 0 ], "tag": { "end": 1214, @@ -1342,27 +1229,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg02" }, - "to": [ - 4.6487, - 0.3513 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1221, - 1263, - 0 - ] - }, - "from": [ - 4.6487, - 0.3513 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1221, + 1263, + 0 ], "tag": { "end": 1262, @@ -1370,27 +1245,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg03" }, - "to": [ - -0.3513, - 0.3513 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1269, - 1310, - 0 - ] - }, - "from": [ - -0.3513, - 0.3513 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1269, + 1310, + 0 ], "tag": { "end": 1309, @@ -1398,27 +1261,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg04" }, - "to": [ - -0.3513, - -1.6487 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1316, - 1355, - 0 - ] - }, - "from": [ - -0.3513, - -1.6487 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1316, + 1355, + 0 ], "tag": { "end": 1354, @@ -1426,27 +1277,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg05" }, - "to": [ - -0.0, - -1.6487 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1361, - 1431, - 0 - ] - }, - "from": [ - -0.0, - -1.6487 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1361, + 1431, + 0 ], "tag": { "end": 1430, @@ -1454,401 +1293,464 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg06" }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1117, + 1170, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 1169, + "start": 1163, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 4.6487, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1176, + 1215, + 0 + ] + }, + "from": [ + 4.6487, + 0.0 + ], + "tag": { + "end": 1214, + "start": 1208, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 4.6487, + 0.3513 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1221, + 1263, + 0 + ] + }, + "from": [ + 4.6487, + 0.3513 + ], + "tag": { + "end": 1262, + "start": 1256, + "type": "TagDeclarator", + "value": "seg03" + }, + "to": [ + -0.3513, + 0.3513 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1269, + 1310, + 0 + ] + }, + "from": [ + -0.3513, + 0.3513 + ], + "tag": { + "end": 1309, + "start": 1303, + "type": "TagDeclarator", + "value": "seg04" + }, + "to": [ + -0.3513, + -1.6487 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1316, + 1355, + 0 + ] + }, + "from": [ + -0.3513, + -1.6487 + ], + "tag": { + "end": 1354, + "start": 1348, + "type": "TagDeclarator", + "value": "seg05" + }, + "to": [ + -0.0, + -1.6487 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1361, + 1431, + 0 + ] + }, + "from": [ + -0.0, + -1.6487 + ], + "tag": { + "end": 1430, + "start": 1424, + "type": "TagDeclarator", + "value": "seg06" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1437, + 1444, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1437, - 1444, - 0 - ] - }, + "start": { "from": [ 0.0, 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1111, + 0 + ] } + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + }, + "seg02": { + "type": "TagIdentifier", + "value": "seg02" + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03" + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04" + }, + "seg05": { + "type": "TagIdentifier", + "value": "seg05" + }, + "seg06": { + "type": "TagIdentifier", + "value": "seg06" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 6.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.601324026261472, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1111, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - }, - "seg02": { - "type": "TagIdentifier", - "value": "seg02" - }, - "seg03": { - "type": "TagIdentifier", - "value": "seg03" - }, - "seg04": { - "type": "TagIdentifier", - "value": "seg04" - }, - "seg05": { - "type": "TagIdentifier", - "value": "seg05" - }, - "seg06": { - "type": "TagIdentifier", - "value": "seg06" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } }, - "height": 6.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.601324026261472, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - } - ], "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -1.0, - 1.0 - ], - "to": [ - -1.0, - 1.0 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -1.0, + 1.0 + ], + "to": [ + -1.0, + 1.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1906, + 1981, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1906, - 1981, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.361324026261472, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -0.361324026261472, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1906, - 1981, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1906, - 1981, - 0 - ] - }, - "ccw": true, - "center": [ - -1.25, - 1.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1906, + 1981, + 0 ], - "from": [ - -1.0, - 1.0 - ], - "radius": 0.25, "tag": null, - "to": [ - -1.0, - 1.0 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg03", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1906, + 1981, + 0 + ] + }, + "ccw": true, + "center": [ + -1.25, + 1.0 + ], + "from": [ + -1.0, + 1.0 + ], + "radius": 0.25, + "tag": null, + "to": [ + -1.0, + 1.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1117, - 1170, - 0 - ], - "tag": { - "end": 1169, - "start": 1163, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1176, - 1215, - 0 - ], - "tag": { - "end": 1214, - "start": 1208, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1221, - 1263, - 0 - ], - "tag": { - "end": 1262, - "start": 1256, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1269, - 1310, - 0 - ], - "tag": { - "end": 1309, - "start": 1303, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1316, - 1355, - 0 - ], - "tag": { - "end": 1354, - "start": 1348, - "type": "TagDeclarator", - "value": "seg05" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1361, - 1431, - 0 - ], - "tag": { - "end": 1430, - "start": 1424, - "type": "TagDeclarator", - "value": "seg06" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg03", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1117, - 1170, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1117, + 1170, + 0 ], "tag": { "end": 1169, @@ -1856,27 +1758,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - 4.6487, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1176, - 1215, - 0 - ] - }, - "from": [ - 4.6487, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1176, + 1215, + 0 ], "tag": { "end": 1214, @@ -1884,27 +1774,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg02" }, - "to": [ - 4.6487, - 0.3513 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1221, - 1263, - 0 - ] - }, - "from": [ - 4.6487, - 0.3513 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1221, + 1263, + 0 ], "tag": { "end": 1262, @@ -1912,27 +1790,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg03" }, - "to": [ - -0.3513, - 0.3513 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1269, - 1310, - 0 - ] - }, - "from": [ - -0.3513, - 0.3513 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1269, + 1310, + 0 ], "tag": { "end": 1309, @@ -1940,27 +1806,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg04" }, - "to": [ - -0.3513, - -1.6487 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1316, - 1355, - 0 - ] - }, - "from": [ - -0.3513, - -1.6487 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1316, + 1355, + 0 ], "tag": { "end": 1354, @@ -1968,27 +1822,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg05" }, - "to": [ - -0.0, - -1.6487 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1361, - 1431, - 0 - ] - }, - "from": [ - -0.0, - -1.6487 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1361, + 1431, + 0 ], "tag": { "end": 1430, @@ -1996,401 +1838,464 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg06" }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1117, + 1170, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 1169, + "start": 1163, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 4.6487, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1176, + 1215, + 0 + ] + }, + "from": [ + 4.6487, + 0.0 + ], + "tag": { + "end": 1214, + "start": 1208, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 4.6487, + 0.3513 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1221, + 1263, + 0 + ] + }, + "from": [ + 4.6487, + 0.3513 + ], + "tag": { + "end": 1262, + "start": 1256, + "type": "TagDeclarator", + "value": "seg03" + }, + "to": [ + -0.3513, + 0.3513 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1269, + 1310, + 0 + ] + }, + "from": [ + -0.3513, + 0.3513 + ], + "tag": { + "end": 1309, + "start": 1303, + "type": "TagDeclarator", + "value": "seg04" + }, + "to": [ + -0.3513, + -1.6487 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1316, + 1355, + 0 + ] + }, + "from": [ + -0.3513, + -1.6487 + ], + "tag": { + "end": 1354, + "start": 1348, + "type": "TagDeclarator", + "value": "seg05" + }, + "to": [ + -0.0, + -1.6487 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1361, + 1431, + 0 + ] + }, + "from": [ + -0.0, + -1.6487 + ], + "tag": { + "end": 1430, + "start": 1424, + "type": "TagDeclarator", + "value": "seg06" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1437, + 1444, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1437, - 1444, - 0 - ] - }, + "start": { "from": [ 0.0, 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1111, + 0 + ] } + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + }, + "seg02": { + "type": "TagIdentifier", + "value": "seg02" + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03" + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04" + }, + "seg05": { + "type": "TagIdentifier", + "value": "seg05" + }, + "seg06": { + "type": "TagIdentifier", + "value": "seg06" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 6.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.601324026261472, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1111, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - }, - "seg02": { - "type": "TagIdentifier", - "value": "seg02" - }, - "seg03": { - "type": "TagIdentifier", - "value": "seg03" - }, - "seg04": { - "type": "TagIdentifier", - "value": "seg04" - }, - "seg05": { - "type": "TagIdentifier", - "value": "seg05" - }, - "seg06": { - "type": "TagIdentifier", - "value": "seg06" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } }, - "height": 6.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.601324026261472, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - } - ], "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -1.0, - 1.0 - ], - "to": [ - -1.0, - 1.0 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -1.0, + 1.0 + ], + "to": [ + -1.0, + 1.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1906, + 1981, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1906, - 1981, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.361324026261472, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -0.361324026261472, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1906, - 1981, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1906, - 1981, - 0 - ] - }, - "ccw": true, - "center": [ - -1.25, - 1.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1906, + 1981, + 0 ], - "from": [ - -1.0, - 1.0 - ], - "radius": 0.25, "tag": null, - "to": [ - -1.0, - 1.0 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg03", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1906, + 1981, + 0 + ] + }, + "ccw": true, + "center": [ + -1.25, + 1.0 + ], + "from": [ + -1.0, + 1.0 + ], + "radius": 0.25, + "tag": null, + "to": [ + -1.0, + 1.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1117, - 1170, - 0 - ], - "tag": { - "end": 1169, - "start": 1163, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1176, - 1215, - 0 - ], - "tag": { - "end": 1214, - "start": 1208, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1221, - 1263, - 0 - ], - "tag": { - "end": 1262, - "start": 1256, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1269, - 1310, - 0 - ], - "tag": { - "end": 1309, - "start": 1303, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1316, - 1355, - 0 - ], - "tag": { - "end": 1354, - "start": 1348, - "type": "TagDeclarator", - "value": "seg05" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1361, - 1431, - 0 - ], - "tag": { - "end": 1430, - "start": 1424, - "type": "TagDeclarator", - "value": "seg06" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg03", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1117, - 1170, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1117, + 1170, + 0 ], "tag": { "end": 1169, @@ -2398,27 +2303,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - 4.6487, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1176, - 1215, - 0 - ] - }, - "from": [ - 4.6487, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1176, + 1215, + 0 ], "tag": { "end": 1214, @@ -2426,27 +2319,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg02" }, - "to": [ - 4.6487, - 0.3513 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1221, - 1263, - 0 - ] - }, - "from": [ - 4.6487, - 0.3513 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1221, + 1263, + 0 ], "tag": { "end": 1262, @@ -2454,27 +2335,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg03" }, - "to": [ - -0.3513, - 0.3513 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1269, - 1310, - 0 - ] - }, - "from": [ - -0.3513, - 0.3513 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1269, + 1310, + 0 ], "tag": { "end": 1309, @@ -2482,27 +2351,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg04" }, - "to": [ - -0.3513, - -1.6487 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1316, - 1355, - 0 - ] - }, - "from": [ - -0.3513, - -1.6487 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1316, + 1355, + 0 ], "tag": { "end": 1354, @@ -2510,27 +2367,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg05" }, - "to": [ - -0.0, - -1.6487 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1361, - 1431, - 0 - ] - }, - "from": [ - -0.0, - -1.6487 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1361, + 1431, + 0 ], "tag": { "end": 1430, @@ -2538,406 +2383,469 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg06" }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1117, + 1170, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 1169, + "start": 1163, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 4.6487, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1176, + 1215, + 0 + ] + }, + "from": [ + 4.6487, + 0.0 + ], + "tag": { + "end": 1214, + "start": 1208, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 4.6487, + 0.3513 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1221, + 1263, + 0 + ] + }, + "from": [ + 4.6487, + 0.3513 + ], + "tag": { + "end": 1262, + "start": 1256, + "type": "TagDeclarator", + "value": "seg03" + }, + "to": [ + -0.3513, + 0.3513 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1269, + 1310, + 0 + ] + }, + "from": [ + -0.3513, + 0.3513 + ], + "tag": { + "end": 1309, + "start": 1303, + "type": "TagDeclarator", + "value": "seg04" + }, + "to": [ + -0.3513, + -1.6487 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1316, + 1355, + 0 + ] + }, + "from": [ + -0.3513, + -1.6487 + ], + "tag": { + "end": 1354, + "start": 1348, + "type": "TagDeclarator", + "value": "seg05" + }, + "to": [ + -0.0, + -1.6487 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1361, + 1431, + 0 + ] + }, + "from": [ + -0.0, + -1.6487 + ], + "tag": { + "end": 1430, + "start": 1424, + "type": "TagDeclarator", + "value": "seg06" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1437, + 1444, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1437, - 1444, - 0 - ] - }, + "start": { "from": [ 0.0, 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1111, + 0 + ] } + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + }, + "seg02": { + "type": "TagIdentifier", + "value": "seg02" + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03" + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04" + }, + "seg05": { + "type": "TagIdentifier", + "value": "seg05" + }, + "seg06": { + "type": "TagIdentifier", + "value": "seg06" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 6.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.601324026261472, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1111, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - }, - "seg02": { - "type": "TagIdentifier", - "value": "seg02" - }, - "seg03": { - "type": "TagIdentifier", - "value": "seg03" - }, - "seg04": { - "type": "TagIdentifier", - "value": "seg04" - }, - "seg05": { - "type": "TagIdentifier", - "value": "seg05" - }, - "seg06": { - "type": "TagIdentifier", - "value": "seg06" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } }, - "height": 6.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.601324026261472, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - } - ], "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -1.0, - 1.0 - ], - "to": [ - -1.0, - 1.0 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -1.0, + 1.0 + ], + "to": [ + -1.0, + 1.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1906, + 1981, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1906, - 1981, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.361324026261472, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -0.361324026261472, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } } ] }, "sketch003": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2240, - 2312, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2240, - 2312, - 0 - ] - }, - "ccw": true, - "center": [ - 1.0, - -1.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2240, + 2312, + 0 ], - "from": [ - 1.25, - -1.0 - ], - "radius": 0.25, "tag": null, - "to": [ - 1.25, - -1.0 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg04", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2240, + 2312, + 0 + ] + }, + "ccw": true, + "center": [ + 1.0, + -1.0 + ], + "from": [ + 1.25, + -1.0 + ], + "radius": 0.25, + "tag": null, + "to": [ + 1.25, + -1.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1117, - 1170, - 0 - ], - "tag": { - "end": 1169, - "start": 1163, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1176, - 1215, - 0 - ], - "tag": { - "end": 1214, - "start": 1208, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1221, - 1263, - 0 - ], - "tag": { - "end": 1262, - "start": 1256, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1269, - 1310, - 0 - ], - "tag": { - "end": 1309, - "start": 1303, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1316, - 1355, - 0 - ], - "tag": { - "end": 1354, - "start": 1348, - "type": "TagDeclarator", - "value": "seg05" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1361, - 1431, - 0 - ], - "tag": { - "end": 1430, - "start": 1424, - "type": "TagDeclarator", - "value": "seg06" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg04", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1117, - 1170, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1117, + 1170, + 0 ], "tag": { "end": 1169, @@ -2945,27 +2853,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - 4.6487, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1176, - 1215, - 0 - ] - }, - "from": [ - 4.6487, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1176, + 1215, + 0 ], "tag": { "end": 1214, @@ -2973,27 +2869,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg02" }, - "to": [ - 4.6487, - 0.3513 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1221, - 1263, - 0 - ] - }, - "from": [ - 4.6487, - 0.3513 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1221, + 1263, + 0 ], "tag": { "end": 1262, @@ -3001,27 +2885,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg03" }, - "to": [ - -0.3513, - 0.3513 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1269, - 1310, - 0 - ] - }, - "from": [ - -0.3513, - 0.3513 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1269, + 1310, + 0 ], "tag": { "end": 1309, @@ -3029,27 +2901,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg04" }, - "to": [ - -0.3513, - -1.6487 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1316, - 1355, - 0 - ] - }, - "from": [ - -0.3513, - -1.6487 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1316, + 1355, + 0 ], "tag": { "end": 1354, @@ -3057,27 +2917,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg05" }, - "to": [ - -0.0, - -1.6487 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1361, - 1431, - 0 - ] - }, - "from": [ - -0.0, - -1.6487 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1361, + 1431, + 0 ], "tag": { "end": 1430, @@ -3085,401 +2933,464 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg06" }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1117, + 1170, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 1169, + "start": 1163, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 4.6487, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1176, + 1215, + 0 + ] + }, + "from": [ + 4.6487, + 0.0 + ], + "tag": { + "end": 1214, + "start": 1208, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 4.6487, + 0.3513 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1221, + 1263, + 0 + ] + }, + "from": [ + 4.6487, + 0.3513 + ], + "tag": { + "end": 1262, + "start": 1256, + "type": "TagDeclarator", + "value": "seg03" + }, + "to": [ + -0.3513, + 0.3513 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1269, + 1310, + 0 + ] + }, + "from": [ + -0.3513, + 0.3513 + ], + "tag": { + "end": 1309, + "start": 1303, + "type": "TagDeclarator", + "value": "seg04" + }, + "to": [ + -0.3513, + -1.6487 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1316, + 1355, + 0 + ] + }, + "from": [ + -0.3513, + -1.6487 + ], + "tag": { + "end": 1354, + "start": 1348, + "type": "TagDeclarator", + "value": "seg05" + }, + "to": [ + -0.0, + -1.6487 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1361, + 1431, + 0 + ] + }, + "from": [ + -0.0, + -1.6487 + ], + "tag": { + "end": 1430, + "start": 1424, + "type": "TagDeclarator", + "value": "seg06" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1437, + 1444, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1437, - 1444, - 0 - ] - }, + "start": { "from": [ 0.0, 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1111, + 0 + ] } + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + }, + "seg02": { + "type": "TagIdentifier", + "value": "seg02" + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03" + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04" + }, + "seg05": { + "type": "TagIdentifier", + "value": "seg05" + }, + "seg06": { + "type": "TagIdentifier", + "value": "seg06" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 6.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.601324026261472, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1111, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - }, - "seg02": { - "type": "TagIdentifier", - "value": "seg02" - }, - "seg03": { - "type": "TagIdentifier", - "value": "seg03" - }, - "seg04": { - "type": "TagIdentifier", - "value": "seg04" - }, - "seg05": { - "type": "TagIdentifier", - "value": "seg05" - }, - "seg06": { - "type": "TagIdentifier", - "value": "seg06" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } }, - "height": 6.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.601324026261472, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - } - ], "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 1.25, - -1.0 - ], - "to": [ - 1.25, - -1.0 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + 1.25, + -1.0 + ], + "to": [ + 1.25, + -1.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2240, + 2312, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2240, - 2312, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.45132402626147194, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -0.45132402626147194, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2240, - 2312, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2240, - 2312, - 0 - ] - }, - "ccw": true, - "center": [ - 1.0, - -1.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2240, + 2312, + 0 ], - "from": [ - 1.25, - -1.0 - ], - "radius": 0.25, "tag": null, - "to": [ - 1.25, - -1.0 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg04", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2240, + 2312, + 0 + ] + }, + "ccw": true, + "center": [ + 1.0, + -1.0 + ], + "from": [ + 1.25, + -1.0 + ], + "radius": 0.25, + "tag": null, + "to": [ + 1.25, + -1.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1117, - 1170, - 0 - ], - "tag": { - "end": 1169, - "start": 1163, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1176, - 1215, - 0 - ], - "tag": { - "end": 1214, - "start": 1208, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1221, - 1263, - 0 - ], - "tag": { - "end": 1262, - "start": 1256, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1269, - 1310, - 0 - ], - "tag": { - "end": 1309, - "start": 1303, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1316, - 1355, - 0 - ], - "tag": { - "end": 1354, - "start": 1348, - "type": "TagDeclarator", - "value": "seg05" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1361, - 1431, - 0 - ], - "tag": { - "end": 1430, - "start": 1424, - "type": "TagDeclarator", - "value": "seg06" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg04", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1117, - 1170, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1117, + 1170, + 0 ], "tag": { "end": 1169, @@ -3487,27 +3398,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - 4.6487, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1176, - 1215, - 0 - ] - }, - "from": [ - 4.6487, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1176, + 1215, + 0 ], "tag": { "end": 1214, @@ -3515,27 +3414,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg02" }, - "to": [ - 4.6487, - 0.3513 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1221, - 1263, - 0 - ] - }, - "from": [ - 4.6487, - 0.3513 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1221, + 1263, + 0 ], "tag": { "end": 1262, @@ -3543,27 +3430,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg03" }, - "to": [ - -0.3513, - 0.3513 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1269, - 1310, - 0 - ] - }, - "from": [ - -0.3513, - 0.3513 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1269, + 1310, + 0 ], "tag": { "end": 1309, @@ -3571,27 +3446,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg04" }, - "to": [ - -0.3513, - -1.6487 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1316, - 1355, - 0 - ] - }, - "from": [ - -0.3513, - -1.6487 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1316, + 1355, + 0 ], "tag": { "end": 1354, @@ -3599,27 +3462,15 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg05" }, - "to": [ - -0.0, - -1.6487 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1361, - 1431, - 0 - ] - }, - "from": [ - -0.0, - -1.6487 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1361, + 1431, + 0 ], "tag": { "end": 1430, @@ -3627,210 +3478,377 @@ description: Variables in memory after executing bracket.kcl "type": "TagDeclarator", "value": "seg06" }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1117, + 1170, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 1169, + "start": 1163, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 4.6487, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1176, + 1215, + 0 + ] + }, + "from": [ + 4.6487, + 0.0 + ], + "tag": { + "end": 1214, + "start": 1208, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 4.6487, + 0.3513 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1221, + 1263, + 0 + ] + }, + "from": [ + 4.6487, + 0.3513 + ], + "tag": { + "end": 1262, + "start": 1256, + "type": "TagDeclarator", + "value": "seg03" + }, + "to": [ + -0.3513, + 0.3513 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1269, + 1310, + 0 + ] + }, + "from": [ + -0.3513, + 0.3513 + ], + "tag": { + "end": 1309, + "start": 1303, + "type": "TagDeclarator", + "value": "seg04" + }, + "to": [ + -0.3513, + -1.6487 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1316, + 1355, + 0 + ] + }, + "from": [ + -0.3513, + -1.6487 + ], + "tag": { + "end": 1354, + "start": 1348, + "type": "TagDeclarator", + "value": "seg05" + }, + "to": [ + -0.0, + -1.6487 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1361, + 1431, + 0 + ] + }, + "from": [ + -0.0, + -1.6487 + ], + "tag": { + "end": 1430, + "start": 1424, + "type": "TagDeclarator", + "value": "seg06" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1437, + 1444, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1437, - 1444, - 0 - ] - }, + "start": { "from": [ 0.0, 0.0 ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1111, + 0 + ] } + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + }, + "seg02": { + "type": "TagIdentifier", + "value": "seg02" + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03" + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04" + }, + "seg05": { + "type": "TagIdentifier", + "value": "seg05" + }, + "seg06": { + "type": "TagIdentifier", + "value": "seg06" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 6.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.601324026261472, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1111, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - }, - "seg02": { - "type": "TagIdentifier", - "value": "seg02" - }, - "seg03": { - "type": "TagIdentifier", - "value": "seg03" - }, - "seg04": { - "type": "TagIdentifier", - "value": "seg04" - }, - "seg05": { - "type": "TagIdentifier", - "value": "seg05" - }, - "seg06": { - "type": "TagIdentifier", - "value": "seg06" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } }, - "height": 6.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.601324026261472, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - } - ], "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 1.25, - -1.0 - ], - "to": [ - 1.25, - -1.0 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + 1.25, + -1.0 + ], + "to": [ + 1.25, + -1.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2240, + 2312, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2240, - 2312, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.45132402626147194, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -0.45132402626147194, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/ops.snap b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/ops.snap index ce59bba51..209096bea 100644 --- a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/ops.snap @@ -218,22 +218,37 @@ description: Operations executed car-wheel-assembly.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -466,22 +481,37 @@ description: Operations executed car-wheel-assembly.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -554,55 +584,103 @@ description: Operations executed car-wheel-assembly.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -675,22 +753,37 @@ description: Operations executed car-wheel-assembly.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -763,22 +856,37 @@ description: Operations executed car-wheel-assembly.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1062,22 +1170,37 @@ description: Operations executed car-wheel-assembly.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1150,22 +1273,37 @@ description: Operations executed car-wheel-assembly.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1217,7 +1355,7 @@ description: Operations executed car-wheel-assembly.kcl 3 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -1281,7 +1419,7 @@ description: Operations executed car-wheel-assembly.kcl 3 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -2223,7 +2361,7 @@ description: Operations executed car-wheel-assembly.kcl 3 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -2473,7 +2611,7 @@ description: Operations executed car-wheel-assembly.kcl 6 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -2730,7 +2868,7 @@ description: Operations executed car-wheel-assembly.kcl 5 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -2794,7 +2932,7 @@ description: Operations executed car-wheel-assembly.kcl 7 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { diff --git a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/program_memory.snap index d21628f49..82ab53d2c 100644 --- a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/program_memory.snap @@ -7,6 +7,11 @@ description: Variables in memory after executing car-wheel-assembly.kcl "type": "Module", "value": 5 }, + "c1": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "c1" + }, "carRotor": { "type": "Module", "value": 4 diff --git a/rust/kcl-lib/tests/kcl_samples/dodecahedron/ops.snap b/rust/kcl-lib/tests/kcl_samples/dodecahedron/ops.snap index 2f875fab3..e0a99fcb6 100644 --- a/rust/kcl-lib/tests/kcl_samples/dodecahedron/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/dodecahedron/ops.snap @@ -1,5 +1,5 @@ --- -source: kcl/src/simulation_tests.rs +source: kcl-lib/src/simulation_tests.rs description: Operations executed dodecahedron.kcl --- [ @@ -915,22 +915,37 @@ description: Operations executed dodecahedron.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, diff --git a/rust/kcl-lib/tests/kcl_samples/dodecahedron/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/dodecahedron/program_memory.snap index 96e7ab79a..d96dfc1f6 100644 --- a/rust/kcl-lib/tests/kcl_samples/dodecahedron/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/dodecahedron/program_memory.snap @@ -252,1231 +252,1246 @@ description: Variables in memory after executing dodecahedron.kcl } }, "bottomBowl": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - 15.1765, - 0.0 - ], - "tag": null, - "to": [ - 4.6898, - 14.4338 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - 4.6898, - 14.4338 - ], - "tag": null, - "to": [ - -12.2781, - 8.9206 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - -12.2781, - 8.9206 - ], - "tag": null, - "to": [ - -12.2781, - -8.9206 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - -12.2781, - -8.9206 - ], - "tag": null, - "to": [ - 4.6898, - -14.4338 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - 4.6898, - -14.4338 - ], - "tag": null, - "to": [ - 15.1765, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": -17.76901418668612, - "y": 0.0, - "z": 10.981854713951094 - }, - "xAxis": { - "x": -0.4472135954999579, - "y": 0.0, - "z": 0.8944271909999159 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.8944271909999159, - "y": 0.0, - "z": 0.4472135954999579 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 15.1765, - 0.0 - ], - "to": [ - 15.1765, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ 1321, 1433, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + 15.1765, + 0.0 + ], + "tag": null, + "to": [ + 4.6898, + 14.4338 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + 4.6898, + 14.4338 + ], + "tag": null, + "to": [ + -12.2781, + 8.9206 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + -12.2781, + 8.9206 + ], + "tag": null, + "to": [ + -12.2781, + -8.9206 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + -12.2781, + -8.9206 + ], + "tag": null, + "to": [ + 4.6898, + -14.4338 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + 4.6898, + -14.4338 + ], + "tag": null, + "to": [ + 15.1765, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": -17.76901418668612, + "y": 0.0, + "z": 10.981854713951094 + }, + "xAxis": { + "x": -0.4472135954999579, + "y": 0.0, + "z": 0.8944271909999159 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.8944271909999159, + "y": 0.0, + "z": 0.4472135954999579 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 15.1765, + 0.0 + ], + "to": [ + 15.1765, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - 15.1765, - 0.0 - ], - "tag": null, - "to": [ - 4.6898, - 14.4338 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - 4.6898, - 14.4338 - ], - "tag": null, - "to": [ - -12.2781, - 8.9206 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - -12.2781, - 8.9206 - ], - "tag": null, - "to": [ - -12.2781, - -8.9206 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - -12.2781, - -8.9206 - ], - "tag": null, - "to": [ - 4.6898, - -14.4338 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - 4.6898, - -14.4338 - ], - "tag": null, - "to": [ - 15.1765, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": -17.76901418668612, - "y": 0.0, - "z": 10.981854713951094 - }, - "xAxis": { - "x": -0.4472135954999579, - "y": 0.0, - "z": 0.8944271909999159 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.8944271909999159, - "y": 0.0, - "z": 0.4472135954999579 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 15.1765, - 0.0 - ], - "to": [ - 15.1765, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ 1321, 1433, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + 15.1765, + 0.0 + ], + "tag": null, + "to": [ + 4.6898, + 14.4338 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + 4.6898, + 14.4338 + ], + "tag": null, + "to": [ + -12.2781, + 8.9206 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + -12.2781, + 8.9206 + ], + "tag": null, + "to": [ + -12.2781, + -8.9206 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + -12.2781, + -8.9206 + ], + "tag": null, + "to": [ + 4.6898, + -14.4338 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + 4.6898, + -14.4338 + ], + "tag": null, + "to": [ + 15.1765, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": -17.76901418668612, + "y": 0.0, + "z": 10.981854713951094 + }, + "xAxis": { + "x": -0.4472135954999579, + "y": 0.0, + "z": 0.8944271909999159 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.8944271909999159, + "y": 0.0, + "z": 0.4472135954999579 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 15.1765, + 0.0 + ], + "to": [ + 15.1765, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - 15.1765, - 0.0 - ], - "tag": null, - "to": [ - 4.6898, - 14.4338 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - 4.6898, - 14.4338 - ], - "tag": null, - "to": [ - -12.2781, - 8.9206 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - -12.2781, - 8.9206 - ], - "tag": null, - "to": [ - -12.2781, - -8.9206 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - -12.2781, - -8.9206 - ], - "tag": null, - "to": [ - 4.6898, - -14.4338 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - 4.6898, - -14.4338 - ], - "tag": null, - "to": [ - 15.1765, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": -17.76901418668612, - "y": 0.0, - "z": 10.981854713951094 - }, - "xAxis": { - "x": -0.4472135954999579, - "y": 0.0, - "z": 0.8944271909999159 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.8944271909999159, - "y": 0.0, - "z": 0.4472135954999579 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 15.1765, - 0.0 - ], - "to": [ - 15.1765, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ 1321, 1433, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + 15.1765, + 0.0 + ], + "tag": null, + "to": [ + 4.6898, + 14.4338 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + 4.6898, + 14.4338 + ], + "tag": null, + "to": [ + -12.2781, + 8.9206 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + -12.2781, + 8.9206 + ], + "tag": null, + "to": [ + -12.2781, + -8.9206 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + -12.2781, + -8.9206 + ], + "tag": null, + "to": [ + 4.6898, + -14.4338 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + 4.6898, + -14.4338 + ], + "tag": null, + "to": [ + 15.1765, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": -17.76901418668612, + "y": 0.0, + "z": 10.981854713951094 + }, + "xAxis": { + "x": -0.4472135954999579, + "y": 0.0, + "z": 0.8944271909999159 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.8944271909999159, + "y": 0.0, + "z": 0.4472135954999579 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 15.1765, + 0.0 + ], + "to": [ + 15.1765, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - 15.1765, - 0.0 - ], - "tag": null, - "to": [ - 4.6898, - 14.4338 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - 4.6898, - 14.4338 - ], - "tag": null, - "to": [ - -12.2781, - 8.9206 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - -12.2781, - 8.9206 - ], - "tag": null, - "to": [ - -12.2781, - -8.9206 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - -12.2781, - -8.9206 - ], - "tag": null, - "to": [ - 4.6898, - -14.4338 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - 4.6898, - -14.4338 - ], - "tag": null, - "to": [ - 15.1765, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": -17.76901418668612, - "y": 0.0, - "z": 10.981854713951094 - }, - "xAxis": { - "x": -0.4472135954999579, - "y": 0.0, - "z": 0.8944271909999159 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.8944271909999159, - "y": 0.0, - "z": 0.4472135954999579 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 15.1765, - 0.0 - ], - "to": [ - 15.1765, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ 1321, 1433, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + 15.1765, + 0.0 + ], + "tag": null, + "to": [ + 4.6898, + 14.4338 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + 4.6898, + 14.4338 + ], + "tag": null, + "to": [ + -12.2781, + 8.9206 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + -12.2781, + 8.9206 + ], + "tag": null, + "to": [ + -12.2781, + -8.9206 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + -12.2781, + -8.9206 + ], + "tag": null, + "to": [ + 4.6898, + -14.4338 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + 4.6898, + -14.4338 + ], + "tag": null, + "to": [ + 15.1765, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": -17.76901418668612, + "y": 0.0, + "z": 10.981854713951094 + }, + "xAxis": { + "x": -0.4472135954999579, + "y": 0.0, + "z": 0.8944271909999159 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.8944271909999159, + "y": 0.0, + "z": 0.4472135954999579 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 15.1765, + 0.0 + ], + "to": [ + 15.1765, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - 15.1765, - 0.0 - ], - "tag": null, - "to": [ - 4.6898, - 14.4338 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - 4.6898, - 14.4338 - ], - "tag": null, - "to": [ - -12.2781, - 8.9206 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - -12.2781, - 8.9206 - ], - "tag": null, - "to": [ - -12.2781, - -8.9206 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - -12.2781, - -8.9206 - ], - "tag": null, - "to": [ - 4.6898, - -14.4338 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1321, - 1433, - 0 - ] - }, - "from": [ - 4.6898, - -14.4338 - ], - "tag": null, - "to": [ - 15.1765, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": -17.76901418668612, - "y": 0.0, - "z": 10.981854713951094 - }, - "xAxis": { - "x": -0.4472135954999579, - "y": 0.0, - "z": 0.8944271909999159 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.8944271909999159, - "y": 0.0, - "z": 0.4472135954999579 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 15.1765, - 0.0 - ], - "to": [ - 15.1765, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ 1321, 1433, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + 15.1765, + 0.0 + ], + "tag": null, + "to": [ + 4.6898, + 14.4338 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + 4.6898, + 14.4338 + ], + "tag": null, + "to": [ + -12.2781, + 8.9206 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + -12.2781, + 8.9206 + ], + "tag": null, + "to": [ + -12.2781, + -8.9206 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + -12.2781, + -8.9206 + ], + "tag": null, + "to": [ + 4.6898, + -14.4338 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + }, + "from": [ + 4.6898, + -14.4338 + ], + "tag": null, + "to": [ + 15.1765, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": -17.76901418668612, + "y": 0.0, + "z": 10.981854713951094 + }, + "xAxis": { + "x": -0.4472135954999579, + "y": 0.0, + "z": 0.8944271909999159 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.8944271909999159, + "y": 0.0, + "z": 0.4472135954999579 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 15.1765, + 0.0 + ], + "to": [ + 15.1765, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1321, + 1433, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/flange/ops.snap b/rust/kcl-lib/tests/kcl_samples/flange/ops.snap index 7390ec08c..aa7b01f1e 100644 --- a/rust/kcl-lib/tests/kcl_samples/flange/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/flange/ops.snap @@ -53,19 +53,31 @@ description: Operations executed flange.kcl "labeledArgs": { "holeSketch": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, diff --git a/rust/kcl-lib/tests/kcl_samples/flange/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/flange/program_memory.snap index 08eae7759..19d21bd37 100644 --- a/rust/kcl-lib/tests/kcl_samples/flange/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/flange/program_memory.snap @@ -284,13 +284,86 @@ description: Variables in memory after executing flange.kcl } }, "circles": { - "type": "Sketches", + "type": "HomArray", "value": [ { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 851, + 957, + 0 + ] + }, + "ccw": true, + "center": [ + 1.75, + 0.0 + ], + "from": [ + 2.0625, + 0.0 + ], + "radius": 0.3125, + "tag": null, + "to": [ + 2.0625, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 2.0625, + 0.0 + ], + "to": [ + 2.0625, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -298,90 +371,93 @@ description: Variables in memory after executing flange.kcl 957, 0 ] - }, - "ccw": true, - "center": [ - 1.75, - 0.0 - ], - "from": [ - 2.0625, - 0.0 - ], - "radius": 0.3125, - "tag": null, - "to": [ - 2.0625, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } - }, - "start": { - "from": [ - 2.0625, - 0.0 - ], - "to": [ - 2.0625, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 851, - 957, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 851, + 957, + 0 + ] + }, + "ccw": true, + "center": [ + 1.75, + 0.0 + ], + "from": [ + 2.0625, + 0.0 + ], + "radius": 0.3125, + "tag": null, + "to": [ + 2.0625, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 2.0625, + 0.0 + ], + "to": [ + 2.0625, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -389,90 +465,93 @@ description: Variables in memory after executing flange.kcl 957, 0 ] - }, - "ccw": true, - "center": [ - 1.75, - 0.0 - ], - "from": [ - 2.0625, - 0.0 - ], - "radius": 0.3125, - "tag": null, - "to": [ - 2.0625, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } - }, - "start": { - "from": [ - 2.0625, - 0.0 - ], - "to": [ - 2.0625, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 851, - 957, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 851, + 957, + 0 + ] + }, + "ccw": true, + "center": [ + 1.75, + 0.0 + ], + "from": [ + 2.0625, + 0.0 + ], + "radius": 0.3125, + "tag": null, + "to": [ + 2.0625, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 2.0625, + 0.0 + ], + "to": [ + 2.0625, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -480,90 +559,93 @@ description: Variables in memory after executing flange.kcl 957, 0 ] - }, - "ccw": true, - "center": [ - 1.75, - 0.0 - ], - "from": [ - 2.0625, - 0.0 - ], - "radius": 0.3125, - "tag": null, - "to": [ - 2.0625, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } - }, - "start": { - "from": [ - 2.0625, - 0.0 - ], - "to": [ - 2.0625, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 851, - 957, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 851, + 957, + 0 + ] + }, + "ccw": true, + "center": [ + 1.75, + 0.0 + ], + "from": [ + 2.0625, + 0.0 + ], + "radius": 0.3125, + "tag": null, + "to": [ + 2.0625, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 2.0625, + 0.0 + ], + "to": [ + 2.0625, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -571,83 +653,13 @@ description: Variables in memory after executing flange.kcl 957, 0 ] - }, - "ccw": true, - "center": [ - 1.75, - 0.0 - ], - "from": [ - 2.0625, - 0.0 - ], - "radius": 0.3125, - "tag": null, - "to": [ - 2.0625, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } - }, - "start": { - "from": [ - 2.0625, - 0.0 - ], - "to": [ - 2.0625, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 851, - 957, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/program_memory.snap index f262d7040..5a697c0ff 100644 --- a/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/program_memory.snap @@ -1938,94 +1938,22 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra } }, "tabsL": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3338, - 3392, - 0 - ], - "tag": { - "end": 3391, - "start": 3384, - "type": "TagDeclarator", - "value": "edge21" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3398, - 3448, - 0 - ], - "tag": { - "end": 3447, - "start": 3440, - "type": "TagDeclarator", - "value": "edge22" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3454, - 3507, - 0 - ], - "tag": { - "end": 3506, - "start": 3499, - "type": "TagDeclarator", - "value": "edge23" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3513, - 3533, - 0 - ], - "tag": { - "end": 3532, - "start": 3525, - "type": "TagDeclarator", - "value": "edge24" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3338, - 3392, - 0 - ] - }, - "from": [ - -76.0, - 44.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3338, + 3392, + 0 ], "tag": { "end": 3391, @@ -2033,27 +1961,15 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge21" }, - "to": [ - -88.0, - 35.6667 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3398, - 3448, - 0 - ] - }, - "from": [ - -88.0, - 35.6667 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3398, + 3448, + 0 ], "tag": { "end": 3447, @@ -2061,27 +1977,15 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge22" }, - "to": [ - -88.0, - 19.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3454, - 3507, - 0 - ] - }, - "from": [ - -88.0, - 19.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3454, + 3507, + 0 ], "tag": { "end": 3506, @@ -2089,27 +1993,15 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge23" }, - "to": [ - -76.0, - 10.6667 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3513, - 3533, - 0 - ] - }, - "from": [ - -76.0, - 10.6667 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3513, + 3533, + 0 ], "tag": { "end": 3532, @@ -2117,200 +2009,239 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge24" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3338, + 3392, + 0 + ] + }, + "from": [ + -76.0, + 44.0 + ], + "tag": { + "end": 3391, + "start": 3384, + "type": "TagDeclarator", + "value": "edge21" + }, + "to": [ + -88.0, + 35.6667 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3398, + 3448, + 0 + ] + }, + "from": [ + -88.0, + 35.6667 + ], + "tag": { + "end": 3447, + "start": 3440, + "type": "TagDeclarator", + "value": "edge22" + }, + "to": [ + -88.0, + 19.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3454, + 3507, + 0 + ] + }, + "from": [ + -88.0, + 19.0 + ], + "tag": { + "end": 3506, + "start": 3499, + "type": "TagDeclarator", + "value": "edge23" + }, + "to": [ + -76.0, + 10.6667 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3513, + 3533, + 0 + ] + }, + "from": [ + -76.0, + 10.6667 + ], + "tag": { + "end": 3532, + "start": 3525, + "type": "TagDeclarator", + "value": "edge24" + }, + "to": [ + -76.0, + 44.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 49.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -76.0, + 44.0 + ], "to": [ -76.0, 44.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3277, + 3332, + 0 + ] } + }, + "tags": { + "edge21": { + "type": "TagIdentifier", + "value": "edge21" + }, + "edge22": { + "type": "TagIdentifier", + "value": "edge22" + }, + "edge23": { + "type": "TagIdentifier", + "value": "edge23" + }, + "edge24": { + "type": "TagIdentifier", + "value": "edge24" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": -4.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.5, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.5, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 49.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -76.0, - 44.0 - ], - "to": [ - -76.0, - 44.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3277, - 3332, - 0 - ] - } - }, - "tags": { - "edge21": { - "type": "TagIdentifier", - "value": "edge21" - }, - "edge22": { - "type": "TagIdentifier", - "value": "edge22" - }, - "edge23": { - "type": "TagIdentifier", - "value": "edge23" - }, - "edge24": { - "type": "TagIdentifier", - "value": "edge24" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": -4.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.5, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.5, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3338, - 3392, - 0 - ], - "tag": { - "end": 3391, - "start": 3384, - "type": "TagDeclarator", - "value": "edge21" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3398, - 3448, - 0 - ], - "tag": { - "end": 3447, - "start": 3440, - "type": "TagDeclarator", - "value": "edge22" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3454, - 3507, - 0 - ], - "tag": { - "end": 3506, - "start": 3499, - "type": "TagDeclarator", - "value": "edge23" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3513, - 3533, - 0 - ], - "tag": { - "end": 3532, - "start": 3525, - "type": "TagDeclarator", - "value": "edge24" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3338, - 3392, - 0 - ] - }, - "from": [ - -76.0, - 44.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3338, + 3392, + 0 ], "tag": { "end": 3391, @@ -2318,27 +2249,15 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge21" }, - "to": [ - -88.0, - 35.6667 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3398, - 3448, - 0 - ] - }, - "from": [ - -88.0, - 35.6667 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3398, + 3448, + 0 ], "tag": { "end": 3447, @@ -2346,27 +2265,15 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge22" }, - "to": [ - -88.0, - 19.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3454, - 3507, - 0 - ] - }, - "from": [ - -88.0, - 19.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3454, + 3507, + 0 ], "tag": { "end": 3506, @@ -2374,27 +2281,15 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge23" }, - "to": [ - -76.0, - 10.6667 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3513, - 3533, - 0 - ] - }, - "from": [ - -76.0, - 10.6667 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3513, + 3533, + 0 ], "tag": { "end": 3532, @@ -2402,205 +2297,244 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge24" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3338, + 3392, + 0 + ] + }, + "from": [ + -76.0, + 44.0 + ], + "tag": { + "end": 3391, + "start": 3384, + "type": "TagDeclarator", + "value": "edge21" + }, + "to": [ + -88.0, + 35.6667 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3398, + 3448, + 0 + ] + }, + "from": [ + -88.0, + 35.6667 + ], + "tag": { + "end": 3447, + "start": 3440, + "type": "TagDeclarator", + "value": "edge22" + }, + "to": [ + -88.0, + 19.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3454, + 3507, + 0 + ] + }, + "from": [ + -88.0, + 19.0 + ], + "tag": { + "end": 3506, + "start": 3499, + "type": "TagDeclarator", + "value": "edge23" + }, + "to": [ + -76.0, + 10.6667 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3513, + 3533, + 0 + ] + }, + "from": [ + -76.0, + 10.6667 + ], + "tag": { + "end": 3532, + "start": 3525, + "type": "TagDeclarator", + "value": "edge24" + }, + "to": [ + -76.0, + 44.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 49.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -76.0, + 44.0 + ], "to": [ -76.0, 44.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3277, + 3332, + 0 + ] } + }, + "tags": { + "edge21": { + "type": "TagIdentifier", + "value": "edge21" + }, + "edge22": { + "type": "TagIdentifier", + "value": "edge22" + }, + "edge23": { + "type": "TagIdentifier", + "value": "edge23" + }, + "edge24": { + "type": "TagIdentifier", + "value": "edge24" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": -4.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.5, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.5, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 49.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -76.0, - 44.0 - ], - "to": [ - -76.0, - 44.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3277, - 3332, - 0 - ] - } - }, - "tags": { - "edge21": { - "type": "TagIdentifier", - "value": "edge21" - }, - "edge22": { - "type": "TagIdentifier", - "value": "edge22" - }, - "edge23": { - "type": "TagIdentifier", - "value": "edge23" - }, - "edge24": { - "type": "TagIdentifier", - "value": "edge24" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": -4.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.5, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.5, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } } ] }, "tabsR": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2497, - 2550, - 0 - ], - "tag": { - "end": 2549, - "start": 2542, - "type": "TagDeclarator", - "value": "edge11" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2556, - 2606, - 0 - ], - "tag": { - "end": 2605, - "start": 2598, - "type": "TagDeclarator", - "value": "edge12" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2612, - 2666, - 0 - ], - "tag": { - "end": 2665, - "start": 2658, - "type": "TagDeclarator", - "value": "edge13" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2672, - 2692, - 0 - ], - "tag": { - "end": 2691, - "start": 2684, - "type": "TagDeclarator", - "value": "edge14" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2497, - 2550, - 0 - ] - }, - "from": [ - 76.0, - 44.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2497, + 2550, + 0 ], "tag": { "end": 2549, @@ -2608,27 +2542,15 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge11" }, - "to": [ - 88.0, - 35.6667 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2556, - 2606, - 0 - ] - }, - "from": [ - 88.0, - 35.6667 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2556, + 2606, + 0 ], "tag": { "end": 2605, @@ -2636,27 +2558,15 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge12" }, - "to": [ - 88.0, - 19.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2612, - 2666, - 0 - ] - }, - "from": [ - 88.0, - 19.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2612, + 2666, + 0 ], "tag": { "end": 2665, @@ -2664,27 +2574,15 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge13" }, - "to": [ - 76.0, - 10.6667 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2672, - 2692, - 0 - ] - }, - "from": [ - 76.0, - 10.6667 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2672, + 2692, + 0 ], "tag": { "end": 2691, @@ -2692,200 +2590,239 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge14" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2497, + 2550, + 0 + ] + }, + "from": [ + 76.0, + 44.0 + ], + "tag": { + "end": 2549, + "start": 2542, + "type": "TagDeclarator", + "value": "edge11" + }, + "to": [ + 88.0, + 35.6667 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2556, + 2606, + 0 + ] + }, + "from": [ + 88.0, + 35.6667 + ], + "tag": { + "end": 2605, + "start": 2598, + "type": "TagDeclarator", + "value": "edge12" + }, + "to": [ + 88.0, + 19.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2612, + 2666, + 0 + ] + }, + "from": [ + 88.0, + 19.0 + ], + "tag": { + "end": 2665, + "start": 2658, + "type": "TagDeclarator", + "value": "edge13" + }, + "to": [ + 76.0, + 10.6667 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2672, + 2692, + 0 + ] + }, + "from": [ + 76.0, + 10.6667 + ], + "tag": { + "end": 2691, + "start": 2684, + "type": "TagDeclarator", + "value": "edge14" + }, + "to": [ + 76.0, + 44.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 49.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 76.0, + 44.0 + ], "to": [ 76.0, 44.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2437, + 2491, + 0 + ] } + }, + "tags": { + "edge11": { + "type": "TagIdentifier", + "value": "edge11" + }, + "edge12": { + "type": "TagIdentifier", + "value": "edge12" + }, + "edge13": { + "type": "TagIdentifier", + "value": "edge13" + }, + "edge14": { + "type": "TagIdentifier", + "value": "edge14" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": -4.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.5, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.5, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 49.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 76.0, - 44.0 - ], - "to": [ - 76.0, - 44.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2437, - 2491, - 0 - ] - } - }, - "tags": { - "edge11": { - "type": "TagIdentifier", - "value": "edge11" - }, - "edge12": { - "type": "TagIdentifier", - "value": "edge12" - }, - "edge13": { - "type": "TagIdentifier", - "value": "edge13" - }, - "edge14": { - "type": "TagIdentifier", - "value": "edge14" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": -4.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.5, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.5, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2497, - 2550, - 0 - ], - "tag": { - "end": 2549, - "start": 2542, - "type": "TagDeclarator", - "value": "edge11" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2556, - 2606, - 0 - ], - "tag": { - "end": 2605, - "start": 2598, - "type": "TagDeclarator", - "value": "edge12" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2612, - 2666, - 0 - ], - "tag": { - "end": 2665, - "start": 2658, - "type": "TagDeclarator", - "value": "edge13" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2672, - 2692, - 0 - ], - "tag": { - "end": 2691, - "start": 2684, - "type": "TagDeclarator", - "value": "edge14" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2497, - 2550, - 0 - ] - }, - "from": [ - 76.0, - 44.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2497, + 2550, + 0 ], "tag": { "end": 2549, @@ -2893,27 +2830,15 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge11" }, - "to": [ - 88.0, - 35.6667 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2556, - 2606, - 0 - ] - }, - "from": [ - 88.0, - 35.6667 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2556, + 2606, + 0 ], "tag": { "end": 2605, @@ -2921,27 +2846,15 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge12" }, - "to": [ - 88.0, - 19.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2612, - 2666, - 0 - ] - }, - "from": [ - 88.0, - 19.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2612, + 2666, + 0 ], "tag": { "end": 2665, @@ -2949,27 +2862,15 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge13" }, - "to": [ - 76.0, - 10.6667 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2672, - 2692, - 0 - ] - }, - "from": [ - 76.0, - 10.6667 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2672, + 2692, + 0 ], "tag": { "end": 2691, @@ -2977,112 +2878,223 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra "type": "TagDeclarator", "value": "edge14" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2497, + 2550, + 0 + ] + }, + "from": [ + 76.0, + 44.0 + ], + "tag": { + "end": 2549, + "start": 2542, + "type": "TagDeclarator", + "value": "edge11" + }, + "to": [ + 88.0, + 35.6667 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2556, + 2606, + 0 + ] + }, + "from": [ + 88.0, + 35.6667 + ], + "tag": { + "end": 2605, + "start": 2598, + "type": "TagDeclarator", + "value": "edge12" + }, + "to": [ + 88.0, + 19.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2612, + 2666, + 0 + ] + }, + "from": [ + 88.0, + 19.0 + ], + "tag": { + "end": 2665, + "start": 2658, + "type": "TagDeclarator", + "value": "edge13" + }, + "to": [ + 76.0, + 10.6667 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2672, + 2692, + 0 + ] + }, + "from": [ + 76.0, + 10.6667 + ], + "tag": { + "end": 2691, + "start": 2684, + "type": "TagDeclarator", + "value": "edge14" + }, + "to": [ + 76.0, + 44.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 49.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 76.0, + 44.0 + ], "to": [ 76.0, 44.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2437, + 2491, + 0 + ] } + }, + "tags": { + "edge11": { + "type": "TagIdentifier", + "value": "edge11" + }, + "edge12": { + "type": "TagIdentifier", + "value": "edge12" + }, + "edge13": { + "type": "TagIdentifier", + "value": "edge13" + }, + "edge14": { + "type": "TagIdentifier", + "value": "edge14" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": -4.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.5, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.5, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 49.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 76.0, - 44.0 - ], - "to": [ - 76.0, - 44.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2437, - 2491, - 0 - ] - } - }, - "tags": { - "edge11": { - "type": "TagIdentifier", - "value": "edge11" - }, - "edge12": { - "type": "TagIdentifier", - "value": "edge12" - }, - "edge13": { - "type": "TagIdentifier", - "value": "edge13" - }, - "edge14": { - "type": "TagIdentifier", - "value": "edge14" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": -4.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.5, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.5, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/french-press/ops.snap b/rust/kcl-lib/tests/kcl_samples/french-press/ops.snap index 1254dc4b9..55ba457f7 100644 --- a/rust/kcl-lib/tests/kcl_samples/french-press/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/french-press/ops.snap @@ -57,7 +57,7 @@ description: Operations executed french-press.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -683,16 +683,25 @@ description: Operations executed french-press.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -744,7 +753,7 @@ description: Operations executed french-press.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -808,7 +817,7 @@ description: Operations executed french-press.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -1046,31 +1055,55 @@ description: Operations executed french-press.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1149,19 +1182,31 @@ description: Operations executed french-press.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1340,7 +1385,7 @@ description: Operations executed french-press.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { diff --git a/rust/kcl-lib/tests/kcl_samples/french-press/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/french-press/program_memory.snap index 772ce50c7..b2132b9d1 100644 --- a/rust/kcl-lib/tests/kcl_samples/french-press/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/french-press/program_memory.snap @@ -183,192 +183,265 @@ description: Variables in memory after executing french-press.kcl } }, "extrude002": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2636, - 2655, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2661, - 2744, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2750, - 2806, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2636, - 2655, - 0 - ] - }, - "from": [ - 0.3, - 0.17 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2636, + 2655, + 0 ], "tag": null, - "to": [ - 0.3, - 1.37 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2661, - 2744, - 0 - ] - }, - "ccw": false, - "center": [ - 0.3, - 0.17 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2661, + 2744, + 0 ], - "from": [ - 0.3, - 1.37 - ], - "radius": 1.2, "tag": null, - "to": [ - 1.3392, - -0.43 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2750, - 2806, - 0 - ] - }, - "from": [ - 1.3392, - -0.43 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2750, + 2806, + 0 ], "tag": null, - "to": [ - 0.3, - 0.17 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2812, - 2819, - 0 - ] - }, - "from": [ - 0.3, - 0.17 - ], - "tag": null, - "to": [ - 0.3, - 0.17 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 2419, - 2499, + 2636, + 2655, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "from": [ + 0.3, + 0.17 + ], + "tag": null, + "to": [ + 0.3, + 1.37 + ], + "type": "ToPoint", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2661, + 2744, + 0 + ] + }, + "ccw": false, + "center": [ + 0.3, + 0.17 + ], + "from": [ + 0.3, + 1.37 + ], + "radius": 1.2, + "tag": null, + "to": [ + 1.3392, + -0.43 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2750, + 2806, + 0 + ] + }, + "from": [ + 1.3392, + -0.43 + ], + "tag": null, + "to": [ + 0.3, + 0.17 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2812, + 2819, + 0 + ] + }, + "from": [ + 0.3, + 0.17 + ], + "tag": null, + "to": [ + 0.3, + 0.17 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2419, + 2499, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2419, + 2499, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 2.055, + 0.0 + ], + "radius": 2.055, + "tag": null, + "to": [ + 2.055, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 2.055, + 0.0 + ], + "to": [ + 2.055, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -376,315 +449,318 @@ description: Variables in memory after executing french-press.kcl 2499, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 2.055, - 0.0 - ], - "radius": 2.055, - "tag": null, - "to": [ - 2.055, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 2.055, - 0.0 - ], - "to": [ - 2.055, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2419, - 2499, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.3, - 0.17 - ], - "to": [ - 0.3, - 0.17 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 0.3, + 0.17 + ], + "to": [ + 0.3, + 0.17 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2600, + 2630, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2600, - 2630, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.05, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.05, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2636, - 2655, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2661, - 2744, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2750, - 2806, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2636, - 2655, - 0 - ] - }, - "from": [ - 0.3, - 0.17 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2636, + 2655, + 0 ], "tag": null, - "to": [ - 0.3, - 1.37 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2661, - 2744, - 0 - ] - }, - "ccw": false, - "center": [ - 0.3, - 0.17 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2661, + 2744, + 0 ], - "from": [ - 0.3, - 1.37 - ], - "radius": 1.2, "tag": null, - "to": [ - 1.3392, - -0.43 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2750, - 2806, - 0 - ] - }, - "from": [ - 1.3392, - -0.43 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2750, + 2806, + 0 ], "tag": null, - "to": [ - 0.3, - 0.17 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2812, - 2819, - 0 - ] - }, - "from": [ - 0.3, - 0.17 - ], - "tag": null, - "to": [ - 0.3, - 0.17 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 2419, - 2499, + 2636, + 2655, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "from": [ + 0.3, + 0.17 + ], + "tag": null, + "to": [ + 0.3, + 1.37 + ], + "type": "ToPoint", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2661, + 2744, + 0 + ] + }, + "ccw": false, + "center": [ + 0.3, + 0.17 + ], + "from": [ + 0.3, + 1.37 + ], + "radius": 1.2, + "tag": null, + "to": [ + 1.3392, + -0.43 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2750, + 2806, + 0 + ] + }, + "from": [ + 1.3392, + -0.43 + ], + "tag": null, + "to": [ + 0.3, + 0.17 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2812, + 2819, + 0 + ] + }, + "from": [ + 0.3, + 0.17 + ], + "tag": null, + "to": [ + 0.3, + 0.17 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2419, + 2499, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2419, + 2499, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 2.055, + 0.0 + ], + "radius": 2.055, + "tag": null, + "to": [ + 2.055, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 2.055, + 0.0 + ], + "to": [ + 2.055, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -692,315 +768,318 @@ description: Variables in memory after executing french-press.kcl 2499, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 2.055, - 0.0 - ], - "radius": 2.055, - "tag": null, - "to": [ - 2.055, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 2.055, - 0.0 - ], - "to": [ - 2.055, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2419, - 2499, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.3, - 0.17 - ], - "to": [ - 0.3, - 0.17 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 0.3, + 0.17 + ], + "to": [ + 0.3, + 0.17 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2600, + 2630, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2600, - 2630, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.05, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.05, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2636, - 2655, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2661, - 2744, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2750, - 2806, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2636, - 2655, - 0 - ] - }, - "from": [ - 0.3, - 0.17 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2636, + 2655, + 0 ], "tag": null, - "to": [ - 0.3, - 1.37 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2661, - 2744, - 0 - ] - }, - "ccw": false, - "center": [ - 0.3, - 0.17 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2661, + 2744, + 0 ], - "from": [ - 0.3, - 1.37 - ], - "radius": 1.2, "tag": null, - "to": [ - 1.3392, - -0.43 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2750, - 2806, - 0 - ] - }, - "from": [ - 1.3392, - -0.43 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2750, + 2806, + 0 ], "tag": null, - "to": [ - 0.3, - 0.17 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2812, - 2819, - 0 - ] - }, - "from": [ - 0.3, - 0.17 - ], - "tag": null, - "to": [ - 0.3, - 0.17 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 2419, - 2499, + 2636, + 2655, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "from": [ + 0.3, + 0.17 + ], + "tag": null, + "to": [ + 0.3, + 1.37 + ], + "type": "ToPoint", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2661, + 2744, + 0 + ] + }, + "ccw": false, + "center": [ + 0.3, + 0.17 + ], + "from": [ + 0.3, + 1.37 + ], + "radius": 1.2, + "tag": null, + "to": [ + 1.3392, + -0.43 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2750, + 2806, + 0 + ] + }, + "from": [ + 1.3392, + -0.43 + ], + "tag": null, + "to": [ + 0.3, + 0.17 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2812, + 2819, + 0 + ] + }, + "from": [ + 0.3, + 0.17 + ], + "tag": null, + "to": [ + 0.3, + 0.17 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2419, + 2499, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2419, + 2499, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 2.055, + 0.0 + ], + "radius": 2.055, + "tag": null, + "to": [ + 2.055, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 2.055, + 0.0 + ], + "to": [ + 2.055, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -1008,129 +1087,59 @@ description: Variables in memory after executing french-press.kcl 2499, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 2.055, - 0.0 - ], - "radius": 2.055, - "tag": null, - "to": [ - 2.055, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 2.055, - 0.0 - ], - "to": [ - 2.055, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2419, - 2499, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.3, - 0.17 - ], - "to": [ - 0.3, - 0.17 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 0.3, + 0.17 + ], + "to": [ + 0.3, + 0.17 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2600, + 2630, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2600, - 2630, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.05, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.05, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } } ] @@ -1254,101 +1263,174 @@ description: Variables in memory after executing french-press.kcl } }, "extrude004": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -1356,224 +1438,227 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.05, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.05, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -1581,224 +1666,227 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.05, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.05, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -1806,224 +1894,227 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.05, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.05, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -2031,224 +2122,227 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.05, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.05, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -2256,224 +2350,227 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.05, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.05, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -2481,224 +2578,227 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.05, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.05, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -2706,224 +2806,227 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.05, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.05, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -2931,229 +3034,232 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.05, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.05, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } } ] }, "extrude005": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4546, + 4584, + 0 ], - "from": [ - 0.8, - 0.0 - ], - "radius": 0.2, "tag": null, - "to": [ - 0.8, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4546, + 4584, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.8, + 0.0 + ], + "radius": 0.2, + "tag": null, + "to": [ + 0.8, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -3161,224 +3267,227 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.8, - 0.0 - ], - "to": [ - 0.8, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 0.8, + 0.0 + ], + "to": [ + 0.8, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4546, + 4584, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.05, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.05, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4546, + 4584, + 0 ], - "from": [ - 0.8, - 0.0 - ], - "radius": 0.2, "tag": null, - "to": [ - 0.8, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4546, + 4584, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.8, + 0.0 + ], + "radius": 0.2, + "tag": null, + "to": [ + 0.8, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -3386,224 +3495,227 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.8, - 0.0 - ], - "to": [ - 0.8, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 0.8, + 0.0 + ], + "to": [ + 0.8, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4546, + 4584, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.05, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.05, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4546, + 4584, + 0 ], - "from": [ - 0.8, - 0.0 - ], - "radius": 0.2, "tag": null, - "to": [ - 0.8, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4546, + 4584, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.8, + 0.0 + ], + "radius": 0.2, + "tag": null, + "to": [ + 0.8, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -3611,224 +3723,227 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.8, - 0.0 - ], - "to": [ - 0.8, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 0.8, + 0.0 + ], + "to": [ + 0.8, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4546, + 4584, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.05, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.05, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4546, + 4584, + 0 ], - "from": [ - 0.8, - 0.0 - ], - "radius": 0.2, "tag": null, - "to": [ - 0.8, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4546, + 4584, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.8, + 0.0 + ], + "radius": 0.2, + "tag": null, + "to": [ + 0.8, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -3836,129 +3951,59 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.8, - 0.0 - ], - "to": [ - 0.8, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 0.8, + 0.0 + ], + "to": [ + 0.8, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4546, + 4584, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -0.05, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": -0.05, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } } ] @@ -5121,264 +5166,33 @@ description: Variables in memory after executing french-press.kcl } }, "sketch002": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1043, - 1062, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1068, - 1102, - 0 - ], - "tag": { - "end": 1101, - "start": 1095, - "type": "TagDeclarator", - "value": "edge1" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1108, - 1192, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1198, - 1250, - 0 - ], - "tag": { - "end": 1249, - "start": 1243, - "type": "TagDeclarator", - "value": "edge2" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1256, - 1340, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1346, - 1398, - 0 - ], - "tag": { - "end": 1397, - "start": 1391, - "type": "TagDeclarator", - "value": "edge3" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1404, - 1486, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1492, - 1532, - 0 - ], - "tag": { - "end": 1531, - "start": 1523, - "type": "TagDeclarator", - "value": "edgeLen" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1538, - 1557, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1563, - 1616, - 0 - ], - "tag": { - "end": 1615, - "start": 1609, - "type": "TagDeclarator", - "value": "edge4" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1622, - 1704, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1710, - 1800, - 0 - ], - "tag": { - "end": 1799, - "start": 1793, - "type": "TagDeclarator", - "value": "edge5" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1806, - 1890, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1896, - 1986, - 0 - ], - "tag": { - "end": 1985, - "start": 1979, - "type": "TagDeclarator", - "value": "edge6" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1992, - 2076, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2082, - 2138, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1043, - 1062, - 0 - ] - }, - "from": [ - 2.205, - 5.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1043, + 1062, + 0 ], "tag": null, - "to": [ - 2.305, - 5.7 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1068, - 1102, - 0 - ] - }, - "from": [ - 2.305, - 5.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1068, + 1102, + 0 ], "tag": { "end": 1101, @@ -5386,56 +5200,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge1" }, - "to": [ - 2.305, - 0.5 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1108, - 1192, - 0 - ] - }, - "ccw": true, - "center": [ - 2.605, - 0.5 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1108, + 1192, + 0 ], - "from": [ - 2.305, - 0.5 - ], - "radius": 0.3, "tag": null, - "to": [ - 2.3331, - 0.3732 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1198, - 1250, - 0 - ] - }, - "from": [ - 2.3331, - 0.3732 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1198, + 1250, + 0 ], "tag": { "end": 1249, @@ -5443,56 +5227,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge2" }, - "to": [ - 2.6331, - -0.1464 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1256, - 1340, - 0 - ] - }, - "ccw": false, - "center": [ - 2.1135, - -0.4464 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1256, + 1340, + 0 ], - "from": [ - 2.6331, - -0.1464 - ], - "radius": 0.6, "tag": null, - "to": [ - 1.8135, - -0.966 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1346, - 1398, - 0 - ] - }, - "from": [ - 1.8135, - -0.966 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1346, + 1398, + 0 ], "tag": { "end": 1397, @@ -5500,56 +5254,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge3" }, - "to": [ - 0.4867, - -0.2 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1404, - 1486, - 0 - ] - }, - "ccw": true, - "center": [ - 0.2367, - -0.633 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1404, + 1486, + 0 ], - "from": [ - 0.4867, - -0.2 - ], - "radius": 0.5, "tag": null, - "to": [ - 0.2367, - -0.133 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1492, - 1532, - 0 - ] - }, - "from": [ - 0.2367, - -0.133 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1492, + 1532, + 0 ], "tag": { "end": 1531, @@ -5557,50 +5281,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edgeLen" }, - "to": [ - 0.1, - -0.133 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1538, - 1557, - 0 - ] - }, - "from": [ - 0.1, - -0.133 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1538, + 1557, + 0 ], "tag": null, - "to": [ - 0.1, - -0.033 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1563, - 1616, - 0 - ] - }, - "from": [ - 0.1, - -0.033 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1563, + 1616, + 0 ], "tag": { "end": 1615, @@ -5608,56 +5308,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge4" }, - "to": [ - 0.2717, - -0.033 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1622, - 1704, - 0 - ] - }, - "ccw": false, - "center": [ - 0.2717, - -0.633 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1622, + 1704, + 0 ], - "from": [ - 0.2717, - -0.033 - ], - "radius": 0.6, "tag": null, - "to": [ - 0.5717, - -0.1134 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1710, - 1800, - 0 - ] - }, - "from": [ - 0.5717, - -0.1134 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1710, + 1800, + 0 ], "tag": { "end": 1799, @@ -5665,56 +5335,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge5" }, - "to": [ - 1.8682, - -0.8619 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1806, - 1890, - 0 - ] - }, - "ccw": true, - "center": [ - 2.1182, - -0.4289 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1806, + 1890, + 0 ], - "from": [ - 1.8682, - -0.8619 - ], - "radius": 0.5, "tag": null, - "to": [ - 2.5512, - -0.1789 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1896, - 1986, - 0 - ] - }, - "from": [ - 2.5512, - -0.1789 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1896, + 1986, + 0 ], "tag": { "end": 1985, @@ -5722,441 +5362,618 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge6" }, - "to": [ - 2.2687, - 0.3104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1992, - 2076, - 0 - ] - }, - "ccw": false, - "center": [ - 2.8125, - 0.564 - ], - "from": [ - 2.2687, - 0.3104 - ], - "radius": 0.6, - "tag": null, - "to": [ - 2.2125, - 0.564 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2082, - 2138, - 0 - ] - }, - "from": [ - 2.2125, - 0.564 - ], - "tag": null, - "to": [ - 2.205, - 5.7 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2144, - 2151, - 0 - ] - }, - "from": [ - 2.205, - 5.7 - ], - "tag": null, - "to": [ - 2.205, - 5.7 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": -0.26, - "y": 0.26, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 2.205, - 5.7 - ], - "to": [ - 2.205, - 5.7 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 993, - 1037, + 1992, + 2076, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2082, + 2138, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1043, + 1062, + 0 + ] + }, + "from": [ + 2.205, + 5.7 + ], + "tag": null, + "to": [ + 2.305, + 5.7 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1068, + 1102, + 0 + ] + }, + "from": [ + 2.305, + 5.7 + ], + "tag": { + "end": 1101, + "start": 1095, + "type": "TagDeclarator", + "value": "edge1" + }, + "to": [ + 2.305, + 0.5 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1108, + 1192, + 0 + ] + }, + "ccw": true, + "center": [ + 2.605, + 0.5 + ], + "from": [ + 2.305, + 0.5 + ], + "radius": 0.3, + "tag": null, + "to": [ + 2.3331, + 0.3732 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1198, + 1250, + 0 + ] + }, + "from": [ + 2.3331, + 0.3732 + ], + "tag": { + "end": 1249, + "start": 1243, + "type": "TagDeclarator", + "value": "edge2" + }, + "to": [ + 2.6331, + -0.1464 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1256, + 1340, + 0 + ] + }, + "ccw": false, + "center": [ + 2.1135, + -0.4464 + ], + "from": [ + 2.6331, + -0.1464 + ], + "radius": 0.6, + "tag": null, + "to": [ + 1.8135, + -0.966 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1346, + 1398, + 0 + ] + }, + "from": [ + 1.8135, + -0.966 + ], + "tag": { + "end": 1397, + "start": 1391, + "type": "TagDeclarator", + "value": "edge3" + }, + "to": [ + 0.4867, + -0.2 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1404, + 1486, + 0 + ] + }, + "ccw": true, + "center": [ + 0.2367, + -0.633 + ], + "from": [ + 0.4867, + -0.2 + ], + "radius": 0.5, + "tag": null, + "to": [ + 0.2367, + -0.133 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1492, + 1532, + 0 + ] + }, + "from": [ + 0.2367, + -0.133 + ], + "tag": { + "end": 1531, + "start": 1523, + "type": "TagDeclarator", + "value": "edgeLen" + }, + "to": [ + 0.1, + -0.133 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1538, + 1557, + 0 + ] + }, + "from": [ + 0.1, + -0.133 + ], + "tag": null, + "to": [ + 0.1, + -0.033 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1563, + 1616, + 0 + ] + }, + "from": [ + 0.1, + -0.033 + ], + "tag": { + "end": 1615, + "start": 1609, + "type": "TagDeclarator", + "value": "edge4" + }, + "to": [ + 0.2717, + -0.033 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1622, + 1704, + 0 + ] + }, + "ccw": false, + "center": [ + 0.2717, + -0.633 + ], + "from": [ + 0.2717, + -0.033 + ], + "radius": 0.6, + "tag": null, + "to": [ + 0.5717, + -0.1134 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1710, + 1800, + 0 + ] + }, + "from": [ + 0.5717, + -0.1134 + ], + "tag": { + "end": 1799, + "start": 1793, + "type": "TagDeclarator", + "value": "edge5" + }, + "to": [ + 1.8682, + -0.8619 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1806, + 1890, + 0 + ] + }, + "ccw": true, + "center": [ + 2.1182, + -0.4289 + ], + "from": [ + 1.8682, + -0.8619 + ], + "radius": 0.5, + "tag": null, + "to": [ + 2.5512, + -0.1789 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1896, + 1986, + 0 + ] + }, + "from": [ + 2.5512, + -0.1789 + ], + "tag": { + "end": 1985, + "start": 1979, + "type": "TagDeclarator", + "value": "edge6" + }, + "to": [ + 2.2687, + 0.3104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1992, + 2076, + 0 + ] + }, + "ccw": false, + "center": [ + 2.8125, + 0.564 + ], + "from": [ + 2.2687, + 0.3104 + ], + "radius": 0.6, + "tag": null, + "to": [ + 2.2125, + 0.564 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2082, + 2138, + 0 + ] + }, + "from": [ + 2.2125, + 0.564 + ], + "tag": null, + "to": [ + 2.205, + 5.7 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2144, + 2151, + 0 + ] + }, + "from": [ + 2.205, + 5.7 + ], + "tag": null, + "to": [ + 2.205, + 5.7 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": -0.26, + "y": 0.26, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 2.205, + 5.7 + ], + "to": [ + 2.205, + 5.7 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 993, + 1037, + 0 + ] + } + }, + "tags": { + "edge1": { + "type": "TagIdentifier", + "value": "edge1" + }, + "edge2": { + "type": "TagIdentifier", + "value": "edge2" + }, + "edge3": { + "type": "TagIdentifier", + "value": "edge3" + }, + "edge4": { + "type": "TagIdentifier", + "value": "edge4" + }, + "edge5": { + "type": "TagIdentifier", + "value": "edge5" + }, + "edge6": { + "type": "TagIdentifier", + "value": "edge6" + }, + "edgeLen": { + "type": "TagIdentifier", + "value": "edgeLen" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "tags": { - "edge1": { - "type": "TagIdentifier", - "value": "edge1" - }, - "edge2": { - "type": "TagIdentifier", - "value": "edge2" - }, - "edge3": { - "type": "TagIdentifier", - "value": "edge3" - }, - "edge4": { - "type": "TagIdentifier", - "value": "edge4" - }, - "edge5": { - "type": "TagIdentifier", - "value": "edge5" - }, - "edge6": { - "type": "TagIdentifier", - "value": "edge6" - }, - "edgeLen": { - "type": "TagIdentifier", - "value": "edgeLen" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 0.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1043, - 1062, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1068, - 1102, - 0 - ], - "tag": { - "end": 1101, - "start": 1095, - "type": "TagDeclarator", - "value": "edge1" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1108, - 1192, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1198, - 1250, - 0 - ], - "tag": { - "end": 1249, - "start": 1243, - "type": "TagDeclarator", - "value": "edge2" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1256, - 1340, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1346, - 1398, - 0 - ], - "tag": { - "end": 1397, - "start": 1391, - "type": "TagDeclarator", - "value": "edge3" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1404, - 1486, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1492, - 1532, - 0 - ], - "tag": { - "end": 1531, - "start": 1523, - "type": "TagDeclarator", - "value": "edgeLen" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1538, - 1557, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1563, - 1616, - 0 - ], - "tag": { - "end": 1615, - "start": 1609, - "type": "TagDeclarator", - "value": "edge4" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1622, - 1704, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1710, - 1800, - 0 - ], - "tag": { - "end": 1799, - "start": 1793, - "type": "TagDeclarator", - "value": "edge5" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1806, - 1890, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1896, - 1986, - 0 - ], - "tag": { - "end": 1985, - "start": 1979, - "type": "TagDeclarator", - "value": "edge6" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1992, - 2076, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2082, - 2138, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1043, - 1062, - 0 - ] - }, - "from": [ - 2.205, - 5.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1043, + 1062, + 0 ], "tag": null, - "to": [ - 2.305, - 5.7 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1068, - 1102, - 0 - ] - }, - "from": [ - 2.305, - 5.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1068, + 1102, + 0 ], "tag": { "end": 1101, @@ -6164,56 +5981,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge1" }, - "to": [ - 2.305, - 0.5 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1108, - 1192, - 0 - ] - }, - "ccw": true, - "center": [ - 2.605, - 0.5 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1108, + 1192, + 0 ], - "from": [ - 2.305, - 0.5 - ], - "radius": 0.3, "tag": null, - "to": [ - 2.3331, - 0.3732 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1198, - 1250, - 0 - ] - }, - "from": [ - 2.3331, - 0.3732 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1198, + 1250, + 0 ], "tag": { "end": 1249, @@ -6221,56 +6008,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge2" }, - "to": [ - 2.6331, - -0.1464 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1256, - 1340, - 0 - ] - }, - "ccw": false, - "center": [ - 2.1135, - -0.4464 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1256, + 1340, + 0 ], - "from": [ - 2.6331, - -0.1464 - ], - "radius": 0.6, "tag": null, - "to": [ - 1.8135, - -0.966 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1346, - 1398, - 0 - ] - }, - "from": [ - 1.8135, - -0.966 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1346, + 1398, + 0 ], "tag": { "end": 1397, @@ -6278,56 +6035,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge3" }, - "to": [ - 0.4867, - -0.2 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1404, - 1486, - 0 - ] - }, - "ccw": true, - "center": [ - 0.2367, - -0.633 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1404, + 1486, + 0 ], - "from": [ - 0.4867, - -0.2 - ], - "radius": 0.5, "tag": null, - "to": [ - 0.2367, - -0.133 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1492, - 1532, - 0 - ] - }, - "from": [ - 0.2367, - -0.133 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1492, + 1532, + 0 ], "tag": { "end": 1531, @@ -6335,50 +6062,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edgeLen" }, - "to": [ - 0.1, - -0.133 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1538, - 1557, - 0 - ] - }, - "from": [ - 0.1, - -0.133 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1538, + 1557, + 0 ], "tag": null, - "to": [ - 0.1, - -0.033 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1563, - 1616, - 0 - ] - }, - "from": [ - 0.1, - -0.033 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1563, + 1616, + 0 ], "tag": { "end": 1615, @@ -6386,56 +6089,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge4" }, - "to": [ - 0.2717, - -0.033 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1622, - 1704, - 0 - ] - }, - "ccw": false, - "center": [ - 0.2717, - -0.633 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1622, + 1704, + 0 ], - "from": [ - 0.2717, - -0.033 - ], - "radius": 0.6, "tag": null, - "to": [ - 0.5717, - -0.1134 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1710, - 1800, - 0 - ] - }, - "from": [ - 0.5717, - -0.1134 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1710, + 1800, + 0 ], "tag": { "end": 1799, @@ -6443,56 +6116,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge5" }, - "to": [ - 1.8682, - -0.8619 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1806, - 1890, - 0 - ] - }, - "ccw": true, - "center": [ - 2.1182, - -0.4289 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1806, + 1890, + 0 ], - "from": [ - 1.8682, - -0.8619 - ], - "radius": 0.5, "tag": null, - "to": [ - 2.5512, - -0.1789 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1896, - 1986, - 0 - ] - }, - "from": [ - 2.5512, - -0.1789 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1896, + 1986, + 0 ], "tag": { "end": 1985, @@ -6500,441 +6143,618 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge6" }, - "to": [ - 2.2687, - 0.3104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1992, - 2076, - 0 - ] - }, - "ccw": false, - "center": [ - 2.8125, - 0.564 - ], - "from": [ - 2.2687, - 0.3104 - ], - "radius": 0.6, - "tag": null, - "to": [ - 2.2125, - 0.564 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2082, - 2138, - 0 - ] - }, - "from": [ - 2.2125, - 0.564 - ], - "tag": null, - "to": [ - 2.205, - 5.7 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2144, - 2151, - 0 - ] - }, - "from": [ - 2.205, - 5.7 - ], - "tag": null, - "to": [ - 2.205, - 5.7 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": -0.26, - "y": 0.26, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 2.205, - 5.7 - ], - "to": [ - 2.205, - 5.7 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 993, - 1037, + 1992, + 2076, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2082, + 2138, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1043, + 1062, + 0 + ] + }, + "from": [ + 2.205, + 5.7 + ], + "tag": null, + "to": [ + 2.305, + 5.7 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1068, + 1102, + 0 + ] + }, + "from": [ + 2.305, + 5.7 + ], + "tag": { + "end": 1101, + "start": 1095, + "type": "TagDeclarator", + "value": "edge1" + }, + "to": [ + 2.305, + 0.5 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1108, + 1192, + 0 + ] + }, + "ccw": true, + "center": [ + 2.605, + 0.5 + ], + "from": [ + 2.305, + 0.5 + ], + "radius": 0.3, + "tag": null, + "to": [ + 2.3331, + 0.3732 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1198, + 1250, + 0 + ] + }, + "from": [ + 2.3331, + 0.3732 + ], + "tag": { + "end": 1249, + "start": 1243, + "type": "TagDeclarator", + "value": "edge2" + }, + "to": [ + 2.6331, + -0.1464 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1256, + 1340, + 0 + ] + }, + "ccw": false, + "center": [ + 2.1135, + -0.4464 + ], + "from": [ + 2.6331, + -0.1464 + ], + "radius": 0.6, + "tag": null, + "to": [ + 1.8135, + -0.966 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1346, + 1398, + 0 + ] + }, + "from": [ + 1.8135, + -0.966 + ], + "tag": { + "end": 1397, + "start": 1391, + "type": "TagDeclarator", + "value": "edge3" + }, + "to": [ + 0.4867, + -0.2 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1404, + 1486, + 0 + ] + }, + "ccw": true, + "center": [ + 0.2367, + -0.633 + ], + "from": [ + 0.4867, + -0.2 + ], + "radius": 0.5, + "tag": null, + "to": [ + 0.2367, + -0.133 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1492, + 1532, + 0 + ] + }, + "from": [ + 0.2367, + -0.133 + ], + "tag": { + "end": 1531, + "start": 1523, + "type": "TagDeclarator", + "value": "edgeLen" + }, + "to": [ + 0.1, + -0.133 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1538, + 1557, + 0 + ] + }, + "from": [ + 0.1, + -0.133 + ], + "tag": null, + "to": [ + 0.1, + -0.033 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1563, + 1616, + 0 + ] + }, + "from": [ + 0.1, + -0.033 + ], + "tag": { + "end": 1615, + "start": 1609, + "type": "TagDeclarator", + "value": "edge4" + }, + "to": [ + 0.2717, + -0.033 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1622, + 1704, + 0 + ] + }, + "ccw": false, + "center": [ + 0.2717, + -0.633 + ], + "from": [ + 0.2717, + -0.033 + ], + "radius": 0.6, + "tag": null, + "to": [ + 0.5717, + -0.1134 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1710, + 1800, + 0 + ] + }, + "from": [ + 0.5717, + -0.1134 + ], + "tag": { + "end": 1799, + "start": 1793, + "type": "TagDeclarator", + "value": "edge5" + }, + "to": [ + 1.8682, + -0.8619 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1806, + 1890, + 0 + ] + }, + "ccw": true, + "center": [ + 2.1182, + -0.4289 + ], + "from": [ + 1.8682, + -0.8619 + ], + "radius": 0.5, + "tag": null, + "to": [ + 2.5512, + -0.1789 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1896, + 1986, + 0 + ] + }, + "from": [ + 2.5512, + -0.1789 + ], + "tag": { + "end": 1985, + "start": 1979, + "type": "TagDeclarator", + "value": "edge6" + }, + "to": [ + 2.2687, + 0.3104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1992, + 2076, + 0 + ] + }, + "ccw": false, + "center": [ + 2.8125, + 0.564 + ], + "from": [ + 2.2687, + 0.3104 + ], + "radius": 0.6, + "tag": null, + "to": [ + 2.2125, + 0.564 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2082, + 2138, + 0 + ] + }, + "from": [ + 2.2125, + 0.564 + ], + "tag": null, + "to": [ + 2.205, + 5.7 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2144, + 2151, + 0 + ] + }, + "from": [ + 2.205, + 5.7 + ], + "tag": null, + "to": [ + 2.205, + 5.7 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": -0.26, + "y": 0.26, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 2.205, + 5.7 + ], + "to": [ + 2.205, + 5.7 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 993, + 1037, + 0 + ] + } + }, + "tags": { + "edge1": { + "type": "TagIdentifier", + "value": "edge1" + }, + "edge2": { + "type": "TagIdentifier", + "value": "edge2" + }, + "edge3": { + "type": "TagIdentifier", + "value": "edge3" + }, + "edge4": { + "type": "TagIdentifier", + "value": "edge4" + }, + "edge5": { + "type": "TagIdentifier", + "value": "edge5" + }, + "edge6": { + "type": "TagIdentifier", + "value": "edge6" + }, + "edgeLen": { + "type": "TagIdentifier", + "value": "edgeLen" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "tags": { - "edge1": { - "type": "TagIdentifier", - "value": "edge1" - }, - "edge2": { - "type": "TagIdentifier", - "value": "edge2" - }, - "edge3": { - "type": "TagIdentifier", - "value": "edge3" - }, - "edge4": { - "type": "TagIdentifier", - "value": "edge4" - }, - "edge5": { - "type": "TagIdentifier", - "value": "edge5" - }, - "edge6": { - "type": "TagIdentifier", - "value": "edge6" - }, - "edgeLen": { - "type": "TagIdentifier", - "value": "edgeLen" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 0.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1043, - 1062, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1068, - 1102, - 0 - ], - "tag": { - "end": 1101, - "start": 1095, - "type": "TagDeclarator", - "value": "edge1" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1108, - 1192, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1198, - 1250, - 0 - ], - "tag": { - "end": 1249, - "start": 1243, - "type": "TagDeclarator", - "value": "edge2" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1256, - 1340, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1346, - 1398, - 0 - ], - "tag": { - "end": 1397, - "start": 1391, - "type": "TagDeclarator", - "value": "edge3" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1404, - 1486, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1492, - 1532, - 0 - ], - "tag": { - "end": 1531, - "start": 1523, - "type": "TagDeclarator", - "value": "edgeLen" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1538, - 1557, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1563, - 1616, - 0 - ], - "tag": { - "end": 1615, - "start": 1609, - "type": "TagDeclarator", - "value": "edge4" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1622, - 1704, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1710, - 1800, - 0 - ], - "tag": { - "end": 1799, - "start": 1793, - "type": "TagDeclarator", - "value": "edge5" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1806, - 1890, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1896, - 1986, - 0 - ], - "tag": { - "end": 1985, - "start": 1979, - "type": "TagDeclarator", - "value": "edge6" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1992, - 2076, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2082, - 2138, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1043, - 1062, - 0 - ] - }, - "from": [ - 2.205, - 5.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1043, + 1062, + 0 ], "tag": null, - "to": [ - 2.305, - 5.7 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1068, - 1102, - 0 - ] - }, - "from": [ - 2.305, - 5.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1068, + 1102, + 0 ], "tag": { "end": 1101, @@ -6942,56 +6762,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge1" }, - "to": [ - 2.305, - 0.5 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1108, - 1192, - 0 - ] - }, - "ccw": true, - "center": [ - 2.605, - 0.5 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1108, + 1192, + 0 ], - "from": [ - 2.305, - 0.5 - ], - "radius": 0.3, "tag": null, - "to": [ - 2.3331, - 0.3732 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1198, - 1250, - 0 - ] - }, - "from": [ - 2.3331, - 0.3732 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1198, + 1250, + 0 ], "tag": { "end": 1249, @@ -6999,56 +6789,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge2" }, - "to": [ - 2.6331, - -0.1464 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1256, - 1340, - 0 - ] - }, - "ccw": false, - "center": [ - 2.1135, - -0.4464 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1256, + 1340, + 0 ], - "from": [ - 2.6331, - -0.1464 - ], - "radius": 0.6, "tag": null, - "to": [ - 1.8135, - -0.966 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1346, - 1398, - 0 - ] - }, - "from": [ - 1.8135, - -0.966 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1346, + 1398, + 0 ], "tag": { "end": 1397, @@ -7056,56 +6816,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge3" }, - "to": [ - 0.4867, - -0.2 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1404, - 1486, - 0 - ] - }, - "ccw": true, - "center": [ - 0.2367, - -0.633 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1404, + 1486, + 0 ], - "from": [ - 0.4867, - -0.2 - ], - "radius": 0.5, "tag": null, - "to": [ - 0.2367, - -0.133 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1492, - 1532, - 0 - ] - }, - "from": [ - 0.2367, - -0.133 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1492, + 1532, + 0 ], "tag": { "end": 1531, @@ -7113,50 +6843,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edgeLen" }, - "to": [ - 0.1, - -0.133 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1538, - 1557, - 0 - ] - }, - "from": [ - 0.1, - -0.133 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1538, + 1557, + 0 ], "tag": null, - "to": [ - 0.1, - -0.033 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1563, - 1616, - 0 - ] - }, - "from": [ - 0.1, - -0.033 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1563, + 1616, + 0 ], "tag": { "end": 1615, @@ -7164,56 +6870,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge4" }, - "to": [ - 0.2717, - -0.033 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1622, - 1704, - 0 - ] - }, - "ccw": false, - "center": [ - 0.2717, - -0.633 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1622, + 1704, + 0 ], - "from": [ - 0.2717, - -0.033 - ], - "radius": 0.6, "tag": null, - "to": [ - 0.5717, - -0.1134 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1710, - 1800, - 0 - ] - }, - "from": [ - 0.5717, - -0.1134 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1710, + 1800, + 0 ], "tag": { "end": 1799, @@ -7221,56 +6897,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge5" }, - "to": [ - 1.8682, - -0.8619 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1806, - 1890, - 0 - ] - }, - "ccw": true, - "center": [ - 2.1182, - -0.4289 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1806, + 1890, + 0 ], - "from": [ - 1.8682, - -0.8619 - ], - "radius": 0.5, "tag": null, - "to": [ - 2.5512, - -0.1789 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1896, - 1986, - 0 - ] - }, - "from": [ - 2.5512, - -0.1789 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1896, + 1986, + 0 ], "tag": { "end": 1985, @@ -7278,441 +6924,618 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge6" }, - "to": [ - 2.2687, - 0.3104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1992, - 2076, - 0 - ] - }, - "ccw": false, - "center": [ - 2.8125, - 0.564 - ], - "from": [ - 2.2687, - 0.3104 - ], - "radius": 0.6, - "tag": null, - "to": [ - 2.2125, - 0.564 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2082, - 2138, - 0 - ] - }, - "from": [ - 2.2125, - 0.564 - ], - "tag": null, - "to": [ - 2.205, - 5.7 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2144, - 2151, - 0 - ] - }, - "from": [ - 2.205, - 5.7 - ], - "tag": null, - "to": [ - 2.205, - 5.7 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": -0.26, - "y": 0.26, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 2.205, - 5.7 - ], - "to": [ - 2.205, - 5.7 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 993, - 1037, + 1992, + 2076, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2082, + 2138, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1043, + 1062, + 0 + ] + }, + "from": [ + 2.205, + 5.7 + ], + "tag": null, + "to": [ + 2.305, + 5.7 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1068, + 1102, + 0 + ] + }, + "from": [ + 2.305, + 5.7 + ], + "tag": { + "end": 1101, + "start": 1095, + "type": "TagDeclarator", + "value": "edge1" + }, + "to": [ + 2.305, + 0.5 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1108, + 1192, + 0 + ] + }, + "ccw": true, + "center": [ + 2.605, + 0.5 + ], + "from": [ + 2.305, + 0.5 + ], + "radius": 0.3, + "tag": null, + "to": [ + 2.3331, + 0.3732 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1198, + 1250, + 0 + ] + }, + "from": [ + 2.3331, + 0.3732 + ], + "tag": { + "end": 1249, + "start": 1243, + "type": "TagDeclarator", + "value": "edge2" + }, + "to": [ + 2.6331, + -0.1464 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1256, + 1340, + 0 + ] + }, + "ccw": false, + "center": [ + 2.1135, + -0.4464 + ], + "from": [ + 2.6331, + -0.1464 + ], + "radius": 0.6, + "tag": null, + "to": [ + 1.8135, + -0.966 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1346, + 1398, + 0 + ] + }, + "from": [ + 1.8135, + -0.966 + ], + "tag": { + "end": 1397, + "start": 1391, + "type": "TagDeclarator", + "value": "edge3" + }, + "to": [ + 0.4867, + -0.2 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1404, + 1486, + 0 + ] + }, + "ccw": true, + "center": [ + 0.2367, + -0.633 + ], + "from": [ + 0.4867, + -0.2 + ], + "radius": 0.5, + "tag": null, + "to": [ + 0.2367, + -0.133 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1492, + 1532, + 0 + ] + }, + "from": [ + 0.2367, + -0.133 + ], + "tag": { + "end": 1531, + "start": 1523, + "type": "TagDeclarator", + "value": "edgeLen" + }, + "to": [ + 0.1, + -0.133 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1538, + 1557, + 0 + ] + }, + "from": [ + 0.1, + -0.133 + ], + "tag": null, + "to": [ + 0.1, + -0.033 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1563, + 1616, + 0 + ] + }, + "from": [ + 0.1, + -0.033 + ], + "tag": { + "end": 1615, + "start": 1609, + "type": "TagDeclarator", + "value": "edge4" + }, + "to": [ + 0.2717, + -0.033 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1622, + 1704, + 0 + ] + }, + "ccw": false, + "center": [ + 0.2717, + -0.633 + ], + "from": [ + 0.2717, + -0.033 + ], + "radius": 0.6, + "tag": null, + "to": [ + 0.5717, + -0.1134 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1710, + 1800, + 0 + ] + }, + "from": [ + 0.5717, + -0.1134 + ], + "tag": { + "end": 1799, + "start": 1793, + "type": "TagDeclarator", + "value": "edge5" + }, + "to": [ + 1.8682, + -0.8619 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1806, + 1890, + 0 + ] + }, + "ccw": true, + "center": [ + 2.1182, + -0.4289 + ], + "from": [ + 1.8682, + -0.8619 + ], + "radius": 0.5, + "tag": null, + "to": [ + 2.5512, + -0.1789 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1896, + 1986, + 0 + ] + }, + "from": [ + 2.5512, + -0.1789 + ], + "tag": { + "end": 1985, + "start": 1979, + "type": "TagDeclarator", + "value": "edge6" + }, + "to": [ + 2.2687, + 0.3104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1992, + 2076, + 0 + ] + }, + "ccw": false, + "center": [ + 2.8125, + 0.564 + ], + "from": [ + 2.2687, + 0.3104 + ], + "radius": 0.6, + "tag": null, + "to": [ + 2.2125, + 0.564 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2082, + 2138, + 0 + ] + }, + "from": [ + 2.2125, + 0.564 + ], + "tag": null, + "to": [ + 2.205, + 5.7 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2144, + 2151, + 0 + ] + }, + "from": [ + 2.205, + 5.7 + ], + "tag": null, + "to": [ + 2.205, + 5.7 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": -0.26, + "y": 0.26, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 2.205, + 5.7 + ], + "to": [ + 2.205, + 5.7 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 993, + 1037, + 0 + ] + } + }, + "tags": { + "edge1": { + "type": "TagIdentifier", + "value": "edge1" + }, + "edge2": { + "type": "TagIdentifier", + "value": "edge2" + }, + "edge3": { + "type": "TagIdentifier", + "value": "edge3" + }, + "edge4": { + "type": "TagIdentifier", + "value": "edge4" + }, + "edge5": { + "type": "TagIdentifier", + "value": "edge5" + }, + "edge6": { + "type": "TagIdentifier", + "value": "edge6" + }, + "edgeLen": { + "type": "TagIdentifier", + "value": "edgeLen" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "tags": { - "edge1": { - "type": "TagIdentifier", - "value": "edge1" - }, - "edge2": { - "type": "TagIdentifier", - "value": "edge2" - }, - "edge3": { - "type": "TagIdentifier", - "value": "edge3" - }, - "edge4": { - "type": "TagIdentifier", - "value": "edge4" - }, - "edge5": { - "type": "TagIdentifier", - "value": "edge5" - }, - "edge6": { - "type": "TagIdentifier", - "value": "edge6" - }, - "edgeLen": { - "type": "TagIdentifier", - "value": "edgeLen" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 0.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1043, - 1062, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1068, - 1102, - 0 - ], - "tag": { - "end": 1101, - "start": 1095, - "type": "TagDeclarator", - "value": "edge1" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1108, - 1192, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1198, - 1250, - 0 - ], - "tag": { - "end": 1249, - "start": 1243, - "type": "TagDeclarator", - "value": "edge2" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1256, - 1340, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1346, - 1398, - 0 - ], - "tag": { - "end": 1397, - "start": 1391, - "type": "TagDeclarator", - "value": "edge3" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1404, - 1486, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1492, - 1532, - 0 - ], - "tag": { - "end": 1531, - "start": 1523, - "type": "TagDeclarator", - "value": "edgeLen" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1538, - 1557, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1563, - 1616, - 0 - ], - "tag": { - "end": 1615, - "start": 1609, - "type": "TagDeclarator", - "value": "edge4" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1622, - 1704, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1710, - 1800, - 0 - ], - "tag": { - "end": 1799, - "start": 1793, - "type": "TagDeclarator", - "value": "edge5" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1806, - 1890, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1896, - 1986, - 0 - ], - "tag": { - "end": 1985, - "start": 1979, - "type": "TagDeclarator", - "value": "edge6" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1992, - 2076, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2082, - 2138, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1043, - 1062, - 0 - ] - }, - "from": [ - 2.205, - 5.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1043, + 1062, + 0 ], "tag": null, - "to": [ - 2.305, - 5.7 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1068, - 1102, - 0 - ] - }, - "from": [ - 2.305, - 5.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1068, + 1102, + 0 ], "tag": { "end": 1101, @@ -7720,56 +7543,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge1" }, - "to": [ - 2.305, - 0.5 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1108, - 1192, - 0 - ] - }, - "ccw": true, - "center": [ - 2.605, - 0.5 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1108, + 1192, + 0 ], - "from": [ - 2.305, - 0.5 - ], - "radius": 0.3, "tag": null, - "to": [ - 2.3331, - 0.3732 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1198, - 1250, - 0 - ] - }, - "from": [ - 2.3331, - 0.3732 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1198, + 1250, + 0 ], "tag": { "end": 1249, @@ -7777,56 +7570,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge2" }, - "to": [ - 2.6331, - -0.1464 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1256, - 1340, - 0 - ] - }, - "ccw": false, - "center": [ - 2.1135, - -0.4464 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1256, + 1340, + 0 ], - "from": [ - 2.6331, - -0.1464 - ], - "radius": 0.6, "tag": null, - "to": [ - 1.8135, - -0.966 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1346, - 1398, - 0 - ] - }, - "from": [ - 1.8135, - -0.966 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1346, + 1398, + 0 ], "tag": { "end": 1397, @@ -7834,56 +7597,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge3" }, - "to": [ - 0.4867, - -0.2 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1404, - 1486, - 0 - ] - }, - "ccw": true, - "center": [ - 0.2367, - -0.633 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1404, + 1486, + 0 ], - "from": [ - 0.4867, - -0.2 - ], - "radius": 0.5, "tag": null, - "to": [ - 0.2367, - -0.133 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1492, - 1532, - 0 - ] - }, - "from": [ - 0.2367, - -0.133 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1492, + 1532, + 0 ], "tag": { "end": 1531, @@ -7891,50 +7624,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edgeLen" }, - "to": [ - 0.1, - -0.133 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1538, - 1557, - 0 - ] - }, - "from": [ - 0.1, - -0.133 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1538, + 1557, + 0 ], "tag": null, - "to": [ - 0.1, - -0.033 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1563, - 1616, - 0 - ] - }, - "from": [ - 0.1, - -0.033 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1563, + 1616, + 0 ], "tag": { "end": 1615, @@ -7942,56 +7651,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge4" }, - "to": [ - 0.2717, - -0.033 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1622, - 1704, - 0 - ] - }, - "ccw": false, - "center": [ - 0.2717, - -0.633 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1622, + 1704, + 0 ], - "from": [ - 0.2717, - -0.033 - ], - "radius": 0.6, "tag": null, - "to": [ - 0.5717, - -0.1134 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1710, - 1800, - 0 - ] - }, - "from": [ - 0.5717, - -0.1134 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1710, + 1800, + 0 ], "tag": { "end": 1799, @@ -7999,56 +7678,26 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge5" }, - "to": [ - 1.8682, - -0.8619 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1806, - 1890, - 0 - ] - }, - "ccw": true, - "center": [ - 2.1182, - -0.4289 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1806, + 1890, + 0 ], - "from": [ - 1.8682, - -0.8619 - ], - "radius": 0.5, "tag": null, - "to": [ - 2.5512, - -0.1789 - ], - "type": "Arc", - "units": { - "type": "Inches" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1896, - 1986, - 0 - ] - }, - "from": [ - 2.5512, - -0.1789 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1896, + 1986, + 0 ], "tag": { "end": 1985, @@ -8056,183 +7705,591 @@ description: Variables in memory after executing french-press.kcl "type": "TagDeclarator", "value": "edge6" }, - "to": [ - 2.2687, - 0.3104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1992, - 2076, - 0 - ] - }, - "ccw": false, - "center": [ - 2.8125, - 0.564 - ], - "from": [ - 2.2687, - 0.3104 - ], - "radius": 0.6, - "tag": null, - "to": [ - 2.2125, - 0.564 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2082, - 2138, - 0 - ] - }, - "from": [ - 2.2125, - 0.564 - ], - "tag": null, - "to": [ - 2.205, - 5.7 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2144, - 2151, - 0 - ] - }, - "from": [ - 2.205, - 5.7 - ], - "tag": null, - "to": [ - 2.205, - 5.7 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": -0.26, - "y": 0.26, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 2.205, - 5.7 - ], - "to": [ - 2.205, - 5.7 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 993, - 1037, + 1992, + 2076, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2082, + 2138, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1043, + 1062, + 0 + ] + }, + "from": [ + 2.205, + 5.7 + ], + "tag": null, + "to": [ + 2.305, + 5.7 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1068, + 1102, + 0 + ] + }, + "from": [ + 2.305, + 5.7 + ], + "tag": { + "end": 1101, + "start": 1095, + "type": "TagDeclarator", + "value": "edge1" + }, + "to": [ + 2.305, + 0.5 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1108, + 1192, + 0 + ] + }, + "ccw": true, + "center": [ + 2.605, + 0.5 + ], + "from": [ + 2.305, + 0.5 + ], + "radius": 0.3, + "tag": null, + "to": [ + 2.3331, + 0.3732 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1198, + 1250, + 0 + ] + }, + "from": [ + 2.3331, + 0.3732 + ], + "tag": { + "end": 1249, + "start": 1243, + "type": "TagDeclarator", + "value": "edge2" + }, + "to": [ + 2.6331, + -0.1464 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1256, + 1340, + 0 + ] + }, + "ccw": false, + "center": [ + 2.1135, + -0.4464 + ], + "from": [ + 2.6331, + -0.1464 + ], + "radius": 0.6, + "tag": null, + "to": [ + 1.8135, + -0.966 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1346, + 1398, + 0 + ] + }, + "from": [ + 1.8135, + -0.966 + ], + "tag": { + "end": 1397, + "start": 1391, + "type": "TagDeclarator", + "value": "edge3" + }, + "to": [ + 0.4867, + -0.2 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1404, + 1486, + 0 + ] + }, + "ccw": true, + "center": [ + 0.2367, + -0.633 + ], + "from": [ + 0.4867, + -0.2 + ], + "radius": 0.5, + "tag": null, + "to": [ + 0.2367, + -0.133 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1492, + 1532, + 0 + ] + }, + "from": [ + 0.2367, + -0.133 + ], + "tag": { + "end": 1531, + "start": 1523, + "type": "TagDeclarator", + "value": "edgeLen" + }, + "to": [ + 0.1, + -0.133 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1538, + 1557, + 0 + ] + }, + "from": [ + 0.1, + -0.133 + ], + "tag": null, + "to": [ + 0.1, + -0.033 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1563, + 1616, + 0 + ] + }, + "from": [ + 0.1, + -0.033 + ], + "tag": { + "end": 1615, + "start": 1609, + "type": "TagDeclarator", + "value": "edge4" + }, + "to": [ + 0.2717, + -0.033 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1622, + 1704, + 0 + ] + }, + "ccw": false, + "center": [ + 0.2717, + -0.633 + ], + "from": [ + 0.2717, + -0.033 + ], + "radius": 0.6, + "tag": null, + "to": [ + 0.5717, + -0.1134 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1710, + 1800, + 0 + ] + }, + "from": [ + 0.5717, + -0.1134 + ], + "tag": { + "end": 1799, + "start": 1793, + "type": "TagDeclarator", + "value": "edge5" + }, + "to": [ + 1.8682, + -0.8619 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1806, + 1890, + 0 + ] + }, + "ccw": true, + "center": [ + 2.1182, + -0.4289 + ], + "from": [ + 1.8682, + -0.8619 + ], + "radius": 0.5, + "tag": null, + "to": [ + 2.5512, + -0.1789 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1896, + 1986, + 0 + ] + }, + "from": [ + 2.5512, + -0.1789 + ], + "tag": { + "end": 1985, + "start": 1979, + "type": "TagDeclarator", + "value": "edge6" + }, + "to": [ + 2.2687, + 0.3104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1992, + 2076, + 0 + ] + }, + "ccw": false, + "center": [ + 2.8125, + 0.564 + ], + "from": [ + 2.2687, + 0.3104 + ], + "radius": 0.6, + "tag": null, + "to": [ + 2.2125, + 0.564 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2082, + 2138, + 0 + ] + }, + "from": [ + 2.2125, + 0.564 + ], + "tag": null, + "to": [ + 2.205, + 5.7 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2144, + 2151, + 0 + ] + }, + "from": [ + 2.205, + 5.7 + ], + "tag": null, + "to": [ + 2.205, + 5.7 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": -0.26, + "y": 0.26, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 2.205, + 5.7 + ], + "to": [ + 2.205, + 5.7 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 993, + 1037, + 0 + ] + } + }, + "tags": { + "edge1": { + "type": "TagIdentifier", + "value": "edge1" + }, + "edge2": { + "type": "TagIdentifier", + "value": "edge2" + }, + "edge3": { + "type": "TagIdentifier", + "value": "edge3" + }, + "edge4": { + "type": "TagIdentifier", + "value": "edge4" + }, + "edge5": { + "type": "TagIdentifier", + "value": "edge5" + }, + "edge6": { + "type": "TagIdentifier", + "value": "edge6" + }, + "edgeLen": { + "type": "TagIdentifier", + "value": "edgeLen" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } }, - "tags": { - "edge1": { - "type": "TagIdentifier", - "value": "edge1" - }, - "edge2": { - "type": "TagIdentifier", - "value": "edge2" - }, - "edge3": { - "type": "TagIdentifier", - "value": "edge3" - }, - "edge4": { - "type": "TagIdentifier", - "value": "edge4" - }, - "edge5": { - "type": "TagIdentifier", - "value": "edge5" - }, - "edge6": { - "type": "TagIdentifier", - "value": "edge6" - }, - "edgeLen": { - "type": "TagIdentifier", - "value": "edgeLen" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 0.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } } ] @@ -8332,153 +8389,226 @@ description: Variables in memory after executing french-press.kcl } }, "sketch004": { - "type": "Sketches", + "type": "HomArray", "value": [ { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2636, - 2655, - 0 - ] - }, - "from": [ - 0.3, - 0.17 - ], - "tag": null, - "to": [ - 0.3, - 1.37 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2661, - 2744, - 0 - ] - }, - "ccw": false, - "center": [ - 0.3, - 0.17 - ], - "from": [ - 0.3, - 1.37 - ], - "radius": 1.2, - "tag": null, - "to": [ - 1.3392, - -0.43 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2750, - 2806, - 0 - ] - }, - "from": [ - 1.3392, - -0.43 - ], - "tag": null, - "to": [ - 0.3, - 0.17 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2812, - 2819, - 0 - ] - }, - "from": [ - 0.3, - 0.17 - ], - "tag": null, - "to": [ - 0.3, - 0.17 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", + "value": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 2419, - 2499, + 2636, + 2655, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "from": [ + 0.3, + 0.17 + ], + "tag": null, + "to": [ + 0.3, + 1.37 + ], + "type": "ToPoint", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2661, + 2744, + 0 + ] + }, + "ccw": false, + "center": [ + 0.3, + 0.17 + ], + "from": [ + 0.3, + 1.37 + ], + "radius": 1.2, + "tag": null, + "to": [ + 1.3392, + -0.43 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2750, + 2806, + 0 + ] + }, + "from": [ + 1.3392, + -0.43 + ], + "tag": null, + "to": [ + 0.3, + 0.17 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2812, + 2819, + 0 + ] + }, + "from": [ + 0.3, + 0.17 + ], + "tag": null, + "to": [ + 0.3, + 0.17 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2419, + 2499, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2419, + 2499, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 2.055, + 0.0 + ], + "radius": 2.055, + "tag": null, + "to": [ + 2.055, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 2.055, + 0.0 + ], + "to": [ + 2.055, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -8486,269 +8616,272 @@ description: Variables in memory after executing french-press.kcl 2499, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 2.055, - 0.0 - ], - "radius": 2.055, - "tag": null, - "to": [ - 2.055, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 2.055, - 0.0 - ], - "to": [ - 2.055, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2419, - 2499, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.3, - 0.17 - ], - "to": [ - 0.3, - 0.17 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 0.3, + 0.17 + ], + "to": [ + 0.3, + 0.17 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2600, + 2630, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2600, - 2630, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2636, - 2655, - 0 - ] - }, - "from": [ - 0.3, - 0.17 - ], - "tag": null, - "to": [ - 0.3, - 1.37 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2661, - 2744, - 0 - ] - }, - "ccw": false, - "center": [ - 0.3, - 0.17 - ], - "from": [ - 0.3, - 1.37 - ], - "radius": 1.2, - "tag": null, - "to": [ - 1.3392, - -0.43 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2750, - 2806, - 0 - ] - }, - "from": [ - 1.3392, - -0.43 - ], - "tag": null, - "to": [ - 0.3, - 0.17 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2812, - 2819, - 0 - ] - }, - "from": [ - 0.3, - 0.17 - ], - "tag": null, - "to": [ - 0.3, - 0.17 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", + "value": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 2419, - 2499, + 2636, + 2655, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "from": [ + 0.3, + 0.17 + ], + "tag": null, + "to": [ + 0.3, + 1.37 + ], + "type": "ToPoint", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2661, + 2744, + 0 + ] + }, + "ccw": false, + "center": [ + 0.3, + 0.17 + ], + "from": [ + 0.3, + 1.37 + ], + "radius": 1.2, + "tag": null, + "to": [ + 1.3392, + -0.43 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2750, + 2806, + 0 + ] + }, + "from": [ + 1.3392, + -0.43 + ], + "tag": null, + "to": [ + 0.3, + 0.17 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2812, + 2819, + 0 + ] + }, + "from": [ + 0.3, + 0.17 + ], + "tag": null, + "to": [ + 0.3, + 0.17 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2419, + 2499, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2419, + 2499, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 2.055, + 0.0 + ], + "radius": 2.055, + "tag": null, + "to": [ + 2.055, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 2.055, + 0.0 + ], + "to": [ + 2.055, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -8756,269 +8889,272 @@ description: Variables in memory after executing french-press.kcl 2499, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 2.055, - 0.0 - ], - "radius": 2.055, - "tag": null, - "to": [ - 2.055, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 2.055, - 0.0 - ], - "to": [ - 2.055, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2419, - 2499, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.3, - 0.17 - ], - "to": [ - 0.3, - 0.17 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 0.3, + 0.17 + ], + "to": [ + 0.3, + 0.17 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2600, + 2630, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2600, - 2630, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2636, - 2655, - 0 - ] - }, - "from": [ - 0.3, - 0.17 - ], - "tag": null, - "to": [ - 0.3, - 1.37 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2661, - 2744, - 0 - ] - }, - "ccw": false, - "center": [ - 0.3, - 0.17 - ], - "from": [ - 0.3, - 1.37 - ], - "radius": 1.2, - "tag": null, - "to": [ - 1.3392, - -0.43 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2750, - 2806, - 0 - ] - }, - "from": [ - 1.3392, - -0.43 - ], - "tag": null, - "to": [ - 0.3, - 0.17 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2812, - 2819, - 0 - ] - }, - "from": [ - 0.3, - 0.17 - ], - "tag": null, - "to": [ - 0.3, - 0.17 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", + "value": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 2419, - 2499, + 2636, + 2655, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "from": [ + 0.3, + 0.17 + ], + "tag": null, + "to": [ + 0.3, + 1.37 + ], + "type": "ToPoint", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2661, + 2744, + 0 + ] + }, + "ccw": false, + "center": [ + 0.3, + 0.17 + ], + "from": [ + 0.3, + 1.37 + ], + "radius": 1.2, + "tag": null, + "to": [ + 1.3392, + -0.43 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2750, + 2806, + 0 + ] + }, + "from": [ + 1.3392, + -0.43 + ], + "tag": null, + "to": [ + 0.3, + 0.17 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2812, + 2819, + 0 + ] + }, + "from": [ + 0.3, + 0.17 + ], + "tag": null, + "to": [ + 0.3, + 0.17 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2419, + 2499, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2419, + 2499, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 2.055, + 0.0 + ], + "radius": 2.055, + "tag": null, + "to": [ + 2.055, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 2.055, + 0.0 + ], + "to": [ + 2.055, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -9026,122 +9162,52 @@ description: Variables in memory after executing french-press.kcl 2499, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 2.055, - 0.0 - ], - "radius": 2.055, - "tag": null, - "to": [ - 2.055, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 2.055, - 0.0 - ], - "to": [ - 2.055, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2419, - 2499, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.3, - 0.17 - ], - "to": [ - 0.3, - 0.17 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 0.3, + 0.17 + ], + "to": [ + 0.3, + 0.17 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2600, + 2630, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2600, - 2630, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } } ] @@ -9906,84 +9972,157 @@ description: Variables in memory after executing french-press.kcl } }, "sketch008": { - "type": "Sketches", + "type": "HomArray", "value": [ { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 - ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, - "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", + "value": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -9991,200 +10130,203 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 - ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, - "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", + "value": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -10192,200 +10334,203 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 - ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, - "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", + "value": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -10393,200 +10538,203 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 - ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, - "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", + "value": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -10594,200 +10742,203 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 - ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, - "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", + "value": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -10795,200 +10946,203 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 - ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, - "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", + "value": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -10996,200 +11150,203 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 - ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, - "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", + "value": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -11197,200 +11354,203 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] - }, - "ccw": true, - "center": [ - 1.4, - 0.0 - ], - "from": [ - 1.7, - 0.0 - ], - "radius": 0.3, - "tag": null, - "to": [ - 1.7, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", + "value": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4236, + 4274, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 1.4, + 0.0 + ], + "from": [ + 1.7, + 0.0 + ], + "radius": 0.3, + "tag": null, + "to": [ + 1.7, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -11398,205 +11558,208 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 1.7, - 0.0 - ], - "to": [ - 1.7, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 1.7, + 0.0 + ], + "to": [ + 1.7, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4274, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4236, - 4274, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } } ] }, "sketch009": { - "type": "Sketches", + "type": "HomArray", "value": [ { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 - ], - "from": [ - 0.8, - 0.0 - ], - "radius": 0.2, - "tag": null, - "to": [ - 0.8, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", + "value": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4546, + 4584, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.8, + 0.0 + ], + "radius": 0.2, + "tag": null, + "to": [ + 0.8, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -11604,200 +11767,203 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.8, - 0.0 - ], - "to": [ - 0.8, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 0.8, + 0.0 + ], + "to": [ + 0.8, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4546, + 4584, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 - ], - "from": [ - 0.8, - 0.0 - ], - "radius": 0.2, - "tag": null, - "to": [ - 0.8, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", + "value": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4546, + 4584, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.8, + 0.0 + ], + "radius": 0.2, + "tag": null, + "to": [ + 0.8, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -11805,200 +11971,203 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.8, - 0.0 - ], - "to": [ - 0.8, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 0.8, + 0.0 + ], + "to": [ + 0.8, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4546, + 4584, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 - ], - "from": [ - 0.8, - 0.0 - ], - "radius": 0.2, - "tag": null, - "to": [ - 0.8, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", + "value": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4546, + 4584, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.8, + 0.0 + ], + "radius": 0.2, + "tag": null, + "to": [ + 0.8, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -12006,200 +12175,203 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.8, - 0.0 - ], - "to": [ - 0.8, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 0.8, + 0.0 + ], + "to": [ + 0.8, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4546, + 4584, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] - }, - "ccw": true, - "center": [ - 0.6, - 0.0 - ], - "from": [ - 0.8, - 0.0 - ], - "radius": 0.2, - "tag": null, - "to": [ - 0.8, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", + "value": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 3966, - 4046, + 4546, + 4584, 0 - ], - "tag": null, - "type": "extrudeArc" + ] + }, + "ccw": true, + "center": [ + 0.6, + 0.0 + ], + "from": [ + 0.8, + 0.0 + ], + "radius": 0.2, + "tag": null, + "to": [ + 0.8, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" } - ], - "sketch": { - "type": "Sketch", + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3966, + 4046, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 1.965, + 0.0 + ], + "radius": 1.965, + "tag": null, + "to": [ + 1.965, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 1.12 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 1.965, + 0.0 + ], + "to": [ + 1.965, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -12207,122 +12379,52 @@ description: Variables in memory after executing french-press.kcl 4046, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 1.965, - 0.0 - ], - "radius": 1.965, - "tag": null, - "to": [ - 1.965, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 1.12 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 1.965, - 0.0 - ], - "to": [ - 1.965, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3966, - 4046, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.05, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "height": 0.05, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Inches" } }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.8, - 0.0 - ], - "to": [ - 0.8, - 0.0 - ], - "units": { - "type": "Inches" + "start": { + "from": [ + 0.8, + 0.0 + ], + "to": [ + 0.8, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4546, + 4584, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4546, - 4584, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gear-rack/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/gear-rack/program_memory.snap index ff4debc34..1b7adccd0 100644 --- a/rust/kcl-lib/tests/kcl_samples/gear-rack/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/gear-rack/program_memory.snap @@ -708,23127 +708,23316 @@ description: Variables in memory after executing gear-rack.kcl } }, "teeth": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 924, - 972, - 0 - ] - }, - "ccw": true, - "center": [ - -49.3149, - 10.875 - ], - "from": [ - -49.4323, - 10.875 - ], - "tag": null, - "to": [ - -49.2747, - 10.9854 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 980, - 1012, - 0 - ] - }, - "from": [ - -49.2747, - 10.9854 - ], - "tag": null, - "to": [ - -48.9456, - 11.8896 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1020, - 1068, - 0 - ] - }, - "ccw": false, - "center": [ - -48.7879, - 11.8322 - ], - "from": [ - -48.9456, - 11.8896 - ], - "tag": null, - "to": [ - -48.7879, - 12.0 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1101, - 0 - ] - }, - "from": [ - -48.7879, - 12.0 - ], - "tag": null, - "to": [ - -48.6014, - 12.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1109, - 1158, - 0 - ] - }, - "ccw": false, - "center": [ - -48.6014, - 11.8322 - ], - "from": [ - -48.6014, - 12.0 - ], - "tag": null, - "to": [ - -48.4438, - 11.8896 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1166, - 1199, - 0 - ] - }, - "from": [ - -48.4438, - 11.8896 - ], - "tag": null, - "to": [ - -48.1147, - 10.9854 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1207, - 1256, - 0 - ] - }, - "ccw": true, - "center": [ - -47.957, - 11.0428 - ], - "from": [ - -48.1147, - 10.9854 - ], - "tag": null, - "to": [ - -47.957, - 10.875 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1264, - 1271, - 0 - ] - }, - "from": [ - -47.957, - 10.875 - ], - "tag": null, - "to": [ - -49.4323, - 10.875 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -49.4323, - 10.875 - ], - "to": [ - -49.4323, - 10.875 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 862, - 916, + 924, + 972, 0 - ] + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 924, + 972, + 0 + ] + }, + "ccw": true, + "center": [ + -49.3149, + 10.875 + ], + "from": [ + -49.4323, + 10.875 + ], + "tag": null, + "to": [ + -49.2747, + 10.9854 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 980, + 1012, + 0 + ] + }, + "from": [ + -49.2747, + 10.9854 + ], + "tag": null, + "to": [ + -48.9456, + 11.8896 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1020, + 1068, + 0 + ] + }, + "ccw": false, + "center": [ + -48.7879, + 11.8322 + ], + "from": [ + -48.9456, + 11.8896 + ], + "tag": null, + "to": [ + -48.7879, + 12.0 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1101, + 0 + ] + }, + "from": [ + -48.7879, + 12.0 + ], + "tag": null, + "to": [ + -48.6014, + 12.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1109, + 1158, + 0 + ] + }, + "ccw": false, + "center": [ + -48.6014, + 11.8322 + ], + "from": [ + -48.6014, + 12.0 + ], + "tag": null, + "to": [ + -48.4438, + 11.8896 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1199, + 0 + ] + }, + "from": [ + -48.4438, + 11.8896 + ], + "tag": null, + "to": [ + -48.1147, + 10.9854 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1207, + 1256, + 0 + ] + }, + "ccw": true, + "center": [ + -47.957, + 11.0428 + ], + "from": [ + -48.1147, + 10.9854 + ], + "tag": null, + "to": [ + -47.957, + 10.875 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1264, + 1271, + 0 + ] + }, + "from": [ + -47.957, + 10.875 + ], + "tag": null, + "to": [ + -49.4323, + 10.875 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + -49.4323, + 10.875 + ], + "to": [ + -49.4323, + 10.875 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 862, + 916, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gear/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/gear/program_memory.snap index 1050342d4..b9a556fa8 100644 --- a/rust/kcl-lib/tests/kcl_samples/gear/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/gear/program_memory.snap @@ -2883,100218 +2883,100281 @@ description: Variables in memory after executing gear.kcl } }, "teeth": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1564, - 1602, - 0 - ] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1967, - 2069, - 0 - ] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1792, - 1822, - 0 - ] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2115, - 2122, - 0 - ] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1878, - 1915, - 0 - ] - } - }, "artifactId": "[uuid]", - "originalId": "[uuid]", + "value": [], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7399, + 0.3404 + ], + "tag": null, + "to": [ + 5.7321, + 0.3351 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7321, + 0.3351 + ], + "tag": null, + "to": [ + 5.7243, + 0.3299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7243, + 0.3299 + ], + "tag": null, + "to": [ + 5.7165, + 0.3246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7165, + 0.3246 + ], + "tag": null, + "to": [ + 5.7087, + 0.3194 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7087, + 0.3194 + ], + "tag": null, + "to": [ + 5.7009, + 0.3143 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.7009, + 0.3143 + ], + "tag": null, + "to": [ + 5.6931, + 0.3091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6931, + 0.3091 + ], + "tag": null, + "to": [ + 5.6853, + 0.3041 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6853, + 0.3041 + ], + "tag": null, + "to": [ + 5.6775, + 0.299 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6775, + 0.299 + ], + "tag": null, + "to": [ + 5.6696, + 0.294 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6696, + 0.294 + ], + "tag": null, + "to": [ + 5.6618, + 0.289 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6618, + 0.289 + ], + "tag": null, + "to": [ + 5.6539, + 0.284 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6539, + 0.284 + ], + "tag": null, + "to": [ + 5.6461, + 0.279 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6461, + 0.279 + ], + "tag": null, + "to": [ + 5.6382, + 0.2741 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6382, + 0.2741 + ], + "tag": null, + "to": [ + 5.6304, + 0.2693 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6304, + 0.2693 + ], + "tag": null, + "to": [ + 5.6225, + 0.2644 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6225, + 0.2644 + ], + "tag": null, + "to": [ + 5.6146, + 0.2597 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6146, + 0.2597 + ], + "tag": null, + "to": [ + 5.6068, + 0.2549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.6068, + 0.2549 + ], + "tag": null, + "to": [ + 5.5989, + 0.2502 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5989, + 0.2502 + ], + "tag": null, + "to": [ + 5.591, + 0.2455 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.591, + 0.2455 + ], + "tag": null, + "to": [ + 5.5831, + 0.2408 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5831, + 0.2408 + ], + "tag": null, + "to": [ + 5.5752, + 0.2362 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5752, + 0.2362 + ], + "tag": null, + "to": [ + 5.5673, + 0.2316 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5673, + 0.2316 + ], + "tag": null, + "to": [ + 5.5594, + 0.227 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5594, + 0.227 + ], + "tag": null, + "to": [ + 5.5515, + 0.2225 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5515, + 0.2225 + ], + "tag": null, + "to": [ + 5.5436, + 0.218 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5436, + 0.218 + ], + "tag": null, + "to": [ + 5.5357, + 0.2135 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5357, + 0.2135 + ], + "tag": null, + "to": [ + 5.5277, + 0.2091 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5277, + 0.2091 + ], + "tag": null, + "to": [ + 5.5198, + 0.2047 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5198, + 0.2047 + ], + "tag": null, + "to": [ + 5.5119, + 0.2004 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.5119, + 0.2004 + ], + "tag": null, + "to": [ + 5.504, + 0.1961 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.504, + 0.1961 + ], + "tag": null, + "to": [ + 5.496, + 0.1918 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.496, + 0.1918 + ], + "tag": null, + "to": [ + 5.4881, + 0.1875 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4881, + 0.1875 + ], + "tag": null, + "to": [ + 5.4801, + 0.1833 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4801, + 0.1833 + ], + "tag": null, + "to": [ + 5.4722, + 0.1792 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4722, + 0.1792 + ], + "tag": null, + "to": [ + 5.4642, + 0.175 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4642, + 0.175 + ], + "tag": null, + "to": [ + 5.4563, + 0.1709 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4563, + 0.1709 + ], + "tag": null, + "to": [ + 5.4483, + 0.1669 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4483, + 0.1669 + ], + "tag": null, + "to": [ + 5.4403, + 0.1628 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4403, + 0.1628 + ], + "tag": null, + "to": [ + 5.4324, + 0.1588 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4324, + 0.1588 + ], + "tag": null, + "to": [ + 5.4244, + 0.1549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4244, + 0.1549 + ], + "tag": null, + "to": [ + 5.4164, + 0.151 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4164, + 0.151 + ], + "tag": null, + "to": [ + 5.4084, + 0.1471 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4084, + 0.1471 + ], + "tag": null, + "to": [ + 5.4004, + 0.1433 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.4004, + 0.1433 + ], + "tag": null, + "to": [ + 5.3924, + 0.1395 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3924, + 0.1395 + ], + "tag": null, + "to": [ + 5.3845, + 0.1357 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3845, + 0.1357 + ], + "tag": null, + "to": [ + 5.3765, + 0.132 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3765, + 0.132 + ], + "tag": null, + "to": [ + 5.3685, + 0.1283 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3685, + 0.1283 + ], + "tag": null, + "to": [ + 5.3605, + 0.1246 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3605, + 0.1246 + ], + "tag": null, + "to": [ + 5.3525, + 0.121 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3525, + 0.121 + ], + "tag": null, + "to": [ + 5.3444, + 0.1174 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3444, + 0.1174 + ], + "tag": null, + "to": [ + 5.3364, + 0.1139 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3364, + 0.1139 + ], + "tag": null, + "to": [ + 5.3284, + 0.1104 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3284, + 0.1104 + ], + "tag": null, + "to": [ + 5.3204, + 0.107 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3204, + 0.107 + ], + "tag": null, + "to": [ + 5.3124, + 0.1036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3124, + 0.1036 + ], + "tag": null, + "to": [ + 5.3044, + 0.1002 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.3044, + 0.1002 + ], + "tag": null, + "to": [ + 5.2963, + 0.0969 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2963, + 0.0969 + ], + "tag": null, + "to": [ + 5.2883, + 0.0936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2883, + 0.0936 + ], + "tag": null, + "to": [ + 5.2803, + 0.0903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2803, + 0.0903 + ], + "tag": null, + "to": [ + 5.2722, + 0.0871 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2722, + 0.0871 + ], + "tag": null, + "to": [ + 5.2642, + 0.084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2642, + 0.084 + ], + "tag": null, + "to": [ + 5.2562, + 0.0808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2562, + 0.0808 + ], + "tag": null, + "to": [ + 5.2481, + 0.0778 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2481, + 0.0778 + ], + "tag": null, + "to": [ + 5.2401, + 0.0747 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2401, + 0.0747 + ], + "tag": null, + "to": [ + 5.2321, + 0.0717 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2321, + 0.0717 + ], + "tag": null, + "to": [ + 5.224, + 0.0688 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.224, + 0.0688 + ], + "tag": null, + "to": [ + 5.216, + 0.0659 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.216, + 0.0659 + ], + "tag": null, + "to": [ + 5.2079, + 0.063 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.2079, + 0.063 + ], + "tag": null, + "to": [ + 5.1999, + 0.0602 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1999, + 0.0602 + ], + "tag": null, + "to": [ + 5.1918, + 0.0575 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1918, + 0.0575 + ], + "tag": null, + "to": [ + 5.1837, + 0.0547 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1837, + 0.0547 + ], + "tag": null, + "to": [ + 5.1757, + 0.0521 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1757, + 0.0521 + ], + "tag": null, + "to": [ + 5.1676, + 0.0494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1676, + 0.0494 + ], + "tag": null, + "to": [ + 5.1596, + 0.0469 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1596, + 0.0469 + ], + "tag": null, + "to": [ + 5.1515, + 0.0443 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1515, + 0.0443 + ], + "tag": null, + "to": [ + 5.1434, + 0.0419 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1434, + 0.0419 + ], + "tag": null, + "to": [ + 5.1354, + 0.0394 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1354, + 0.0394 + ], + "tag": null, + "to": [ + 5.1273, + 0.0371 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1273, + 0.0371 + ], + "tag": null, + "to": [ + 5.1192, + 0.0347 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1192, + 0.0347 + ], + "tag": null, + "to": [ + 5.1112, + 0.0325 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1112, + 0.0325 + ], + "tag": null, + "to": [ + 5.1031, + 0.0303 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.1031, + 0.0303 + ], + "tag": null, + "to": [ + 5.095, + 0.0281 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.095, + 0.0281 + ], + "tag": null, + "to": [ + 5.0869, + 0.026 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0869, + 0.026 + ], + "tag": null, + "to": [ + 5.0789, + 0.0239 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0789, + 0.0239 + ], + "tag": null, + "to": [ + 5.0708, + 0.022 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0708, + 0.022 + ], + "tag": null, + "to": [ + 5.0627, + 0.02 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0627, + 0.02 + ], + "tag": null, + "to": [ + 5.0546, + 0.0182 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0546, + 0.0182 + ], + "tag": null, + "to": [ + 5.0466, + 0.0164 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0466, + 0.0164 + ], + "tag": null, + "to": [ + 5.0385, + 0.0146 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0385, + 0.0146 + ], + "tag": null, + "to": [ + 5.0304, + 0.013 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0304, + 0.013 + ], + "tag": null, + "to": [ + 5.0223, + 0.0114 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0223, + 0.0114 + ], + "tag": null, + "to": [ + 5.0142, + 0.0098 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0142, + 0.0098 + ], + "tag": null, + "to": [ + 5.0061, + 0.0084 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 5.0061, + 0.0084 + ], + "tag": null, + "to": [ + 4.9981, + 0.007 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9981, + 0.007 + ], + "tag": null, + "to": [ + 4.99, + 0.0058 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.99, + 0.0058 + ], + "tag": null, + "to": [ + 4.9819, + 0.0046 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9819, + 0.0046 + ], + "tag": null, + "to": [ + 4.9738, + 0.0035 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9738, + 0.0035 + ], + "tag": null, + "to": [ + 4.9657, + 0.0025 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9657, + 0.0025 + ], + "tag": null, + "to": [ + 4.9576, + 0.0016 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9576, + 0.0016 + ], + "tag": null, + "to": [ + 4.9496, + 0.0009 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9496, + 0.0009 + ], + "tag": null, + "to": [ + 4.9415, + 0.0003 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1564, + 1602, + 0 + ] + }, + "from": [ + 4.9415, + 0.0003 + ], + "tag": null, + "to": [ + 4.9334, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1967, + 2069, + 0 + ] + }, + "ccw": true, + "center": [ + -0.0, + -0.0 + ], + "from": [ + 4.9334, + 0.0 + ], + "radius": 4.933386259126019, + "tag": null, + "to": [ + 4.8356, + 0.9775 + ], + "type": "Arc", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8356, + 0.9775 + ], + "tag": null, + "to": [ + 4.8436, + 0.9788 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8436, + 0.9788 + ], + "tag": null, + "to": [ + 4.8516, + 0.9799 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8516, + 0.9799 + ], + "tag": null, + "to": [ + 4.8597, + 0.9808 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8597, + 0.9808 + ], + "tag": null, + "to": [ + 4.8678, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8678, + 0.9815 + ], + "tag": null, + "to": [ + 4.8759, + 0.9821 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8759, + 0.9821 + ], + "tag": null, + "to": [ + 4.884, + 0.9827 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.884, + 0.9827 + ], + "tag": null, + "to": [ + 4.8922, + 0.9831 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.8922, + 0.9831 + ], + "tag": null, + "to": [ + 4.9004, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9004, + 0.9835 + ], + "tag": null, + "to": [ + 4.9086, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9086, + 0.9837 + ], + "tag": null, + "to": [ + 4.9168, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9168, + 0.9839 + ], + "tag": null, + "to": [ + 4.925, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.925, + 0.984 + ], + "tag": null, + "to": [ + 4.9332, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9332, + 0.984 + ], + "tag": null, + "to": [ + 4.9415, + 0.984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9415, + 0.984 + ], + "tag": null, + "to": [ + 4.9497, + 0.9839 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9497, + 0.9839 + ], + "tag": null, + "to": [ + 4.958, + 0.9837 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.958, + 0.9837 + ], + "tag": null, + "to": [ + 4.9663, + 0.9835 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9663, + 0.9835 + ], + "tag": null, + "to": [ + 4.9746, + 0.9832 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9746, + 0.9832 + ], + "tag": null, + "to": [ + 4.9829, + 0.9829 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9829, + 0.9829 + ], + "tag": null, + "to": [ + 4.9912, + 0.9825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9912, + 0.9825 + ], + "tag": null, + "to": [ + 4.9996, + 0.982 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 4.9996, + 0.982 + ], + "tag": null, + "to": [ + 5.0079, + 0.9815 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0079, + 0.9815 + ], + "tag": null, + "to": [ + 5.0163, + 0.9809 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0163, + 0.9809 + ], + "tag": null, + "to": [ + 5.0246, + 0.9803 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0246, + 0.9803 + ], + "tag": null, + "to": [ + 5.033, + 0.9796 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.033, + 0.9796 + ], + "tag": null, + "to": [ + 5.0414, + 0.9789 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0414, + 0.9789 + ], + "tag": null, + "to": [ + 5.0497, + 0.9781 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0497, + 0.9781 + ], + "tag": null, + "to": [ + 5.0581, + 0.9773 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0581, + 0.9773 + ], + "tag": null, + "to": [ + 5.0665, + 0.9764 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0665, + 0.9764 + ], + "tag": null, + "to": [ + 5.075, + 0.9755 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.075, + 0.9755 + ], + "tag": null, + "to": [ + 5.0834, + 0.9745 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0834, + 0.9745 + ], + "tag": null, + "to": [ + 5.0918, + 0.9735 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.0918, + 0.9735 + ], + "tag": null, + "to": [ + 5.1002, + 0.9724 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1002, + 0.9724 + ], + "tag": null, + "to": [ + 5.1087, + 0.9713 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1087, + 0.9713 + ], + "tag": null, + "to": [ + 5.1171, + 0.9701 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1171, + 0.9701 + ], + "tag": null, + "to": [ + 5.1256, + 0.9689 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1256, + 0.9689 + ], + "tag": null, + "to": [ + 5.1341, + 0.9677 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1341, + 0.9677 + ], + "tag": null, + "to": [ + 5.1425, + 0.9664 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1425, + 0.9664 + ], + "tag": null, + "to": [ + 5.151, + 0.9651 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.151, + 0.9651 + ], + "tag": null, + "to": [ + 5.1595, + 0.9637 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1595, + 0.9637 + ], + "tag": null, + "to": [ + 5.168, + 0.9623 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.168, + 0.9623 + ], + "tag": null, + "to": [ + 5.1765, + 0.9608 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1765, + 0.9608 + ], + "tag": null, + "to": [ + 5.185, + 0.9593 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.185, + 0.9593 + ], + "tag": null, + "to": [ + 5.1935, + 0.9577 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.1935, + 0.9577 + ], + "tag": null, + "to": [ + 5.202, + 0.9561 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.202, + 0.9561 + ], + "tag": null, + "to": [ + 5.2105, + 0.9545 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2105, + 0.9545 + ], + "tag": null, + "to": [ + 5.219, + 0.9528 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.219, + 0.9528 + ], + "tag": null, + "to": [ + 5.2276, + 0.9511 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2276, + 0.9511 + ], + "tag": null, + "to": [ + 5.2361, + 0.9494 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2361, + 0.9494 + ], + "tag": null, + "to": [ + 5.2447, + 0.9476 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2447, + 0.9476 + ], + "tag": null, + "to": [ + 5.2532, + 0.9457 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2532, + 0.9457 + ], + "tag": null, + "to": [ + 5.2617, + 0.9439 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2617, + 0.9439 + ], + "tag": null, + "to": [ + 5.2703, + 0.942 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2703, + 0.942 + ], + "tag": null, + "to": [ + 5.2789, + 0.94 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2789, + 0.94 + ], + "tag": null, + "to": [ + 5.2874, + 0.938 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.2874, + 0.938 + ], + "tag": null, + "to": [ + 5.296, + 0.936 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.296, + 0.936 + ], + "tag": null, + "to": [ + 5.3046, + 0.9339 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3046, + 0.9339 + ], + "tag": null, + "to": [ + 5.3132, + 0.9318 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3132, + 0.9318 + ], + "tag": null, + "to": [ + 5.3217, + 0.9297 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3217, + 0.9297 + ], + "tag": null, + "to": [ + 5.3303, + 0.9275 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3303, + 0.9275 + ], + "tag": null, + "to": [ + 5.3389, + 0.9253 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3389, + 0.9253 + ], + "tag": null, + "to": [ + 5.3475, + 0.923 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3475, + 0.923 + ], + "tag": null, + "to": [ + 5.3561, + 0.9207 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3561, + 0.9207 + ], + "tag": null, + "to": [ + 5.3647, + 0.9184 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3647, + 0.9184 + ], + "tag": null, + "to": [ + 5.3733, + 0.916 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3733, + 0.916 + ], + "tag": null, + "to": [ + 5.3819, + 0.9136 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3819, + 0.9136 + ], + "tag": null, + "to": [ + 5.3906, + 0.9112 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3906, + 0.9112 + ], + "tag": null, + "to": [ + 5.3992, + 0.9087 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.3992, + 0.9087 + ], + "tag": null, + "to": [ + 5.4078, + 0.9062 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4078, + 0.9062 + ], + "tag": null, + "to": [ + 5.4164, + 0.9036 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4164, + 0.9036 + ], + "tag": null, + "to": [ + 5.425, + 0.901 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.425, + 0.901 + ], + "tag": null, + "to": [ + 5.4337, + 0.8984 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4337, + 0.8984 + ], + "tag": null, + "to": [ + 5.4423, + 0.8958 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4423, + 0.8958 + ], + "tag": null, + "to": [ + 5.4509, + 0.8931 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4509, + 0.8931 + ], + "tag": null, + "to": [ + 5.4596, + 0.8903 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4596, + 0.8903 + ], + "tag": null, + "to": [ + 5.4682, + 0.8876 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4682, + 0.8876 + ], + "tag": null, + "to": [ + 5.4769, + 0.8848 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4769, + 0.8848 + ], + "tag": null, + "to": [ + 5.4855, + 0.8819 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4855, + 0.8819 + ], + "tag": null, + "to": [ + 5.4942, + 0.8791 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.4942, + 0.8791 + ], + "tag": null, + "to": [ + 5.5028, + 0.8762 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5028, + 0.8762 + ], + "tag": null, + "to": [ + 5.5115, + 0.8732 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5115, + 0.8732 + ], + "tag": null, + "to": [ + 5.5201, + 0.8703 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5201, + 0.8703 + ], + "tag": null, + "to": [ + 5.5288, + 0.8672 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5288, + 0.8672 + ], + "tag": null, + "to": [ + 5.5374, + 0.8642 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5374, + 0.8642 + ], + "tag": null, + "to": [ + 5.5461, + 0.8611 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5461, + 0.8611 + ], + "tag": null, + "to": [ + 5.5548, + 0.858 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5548, + 0.858 + ], + "tag": null, + "to": [ + 5.5634, + 0.8549 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5634, + 0.8549 + ], + "tag": null, + "to": [ + 5.5721, + 0.8517 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5721, + 0.8517 + ], + "tag": null, + "to": [ + 5.5808, + 0.8485 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5808, + 0.8485 + ], + "tag": null, + "to": [ + 5.5894, + 0.8452 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5894, + 0.8452 + ], + "tag": null, + "to": [ + 5.5981, + 0.842 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.5981, + 0.842 + ], + "tag": null, + "to": [ + 5.6068, + 0.8386 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6068, + 0.8386 + ], + "tag": null, + "to": [ + 5.6154, + 0.8353 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6154, + 0.8353 + ], + "tag": null, + "to": [ + 5.6241, + 0.8319 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6241, + 0.8319 + ], + "tag": null, + "to": [ + 5.6328, + 0.8285 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6328, + 0.8285 + ], + "tag": null, + "to": [ + 5.6415, + 0.825 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6415, + 0.825 + ], + "tag": null, + "to": [ + 5.6502, + 0.8216 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6502, + 0.8216 + ], + "tag": null, + "to": [ + 5.6588, + 0.8181 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6588, + 0.8181 + ], + "tag": null, + "to": [ + 5.6675, + 0.8145 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6675, + 0.8145 + ], + "tag": null, + "to": [ + 5.6762, + 0.8109 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6762, + 0.8109 + ], + "tag": null, + "to": [ + 5.6849, + 0.8073 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1792, + 1822, + 0 + ] + }, + "from": [ + 5.6849, + 0.8073 + ], + "tag": null, + "to": [ + 5.6936, + 0.8037 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2115, + 2122, + 0 + ] + }, + "from": [ + 5.6936, + 0.8037 + ], + "tag": null, + "to": [ + 5.7399, + 0.3404 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 5.7399, + 0.3404 + ], + "to": [ + 5.7399, + 0.3404 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1878, + 1915, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Inches" } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/ops.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/ops.snap index ae83976b4..d587520ba 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/ops.snap @@ -473,7 +473,7 @@ description: Operations executed gridfinity-baseplate-magnets.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -764,19 +764,31 @@ description: Operations executed gridfinity-baseplate-magnets.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -890,31 +902,55 @@ description: Operations executed gridfinity-baseplate-magnets.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1028,19 +1064,31 @@ description: Operations executed gridfinity-baseplate-magnets.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1154,31 +1202,55 @@ description: Operations executed gridfinity-baseplate-magnets.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1338,19 +1410,31 @@ description: Operations executed gridfinity-baseplate-magnets.kcl "labeledArgs": { "holeSketch": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1997,13 +2081,19 @@ description: Operations executed gridfinity-baseplate-magnets.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -2232,13 +2322,19 @@ description: Operations executed gridfinity-baseplate-magnets.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/program_memory.snap index ca445a763..07dedf49c 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/program_memory.snap @@ -76,11771 +76,11915 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc } }, "basePlateCorners": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] }, "basePlateSides": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] @@ -11872,986 +12016,998 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc } }, "corners": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] @@ -14515,13 +14671,86 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc } }, "magnetsSketch": { - "type": "Sketches", + "type": "HomArray", "value": [ { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4856, + 4957, + 0 + ] + }, + "ccw": true, + "center": [ + 8.0, + 8.0 + ], + "from": [ + 11.25, + 8.0 + ], + "radius": 3.25, + "tag": null, + "to": [ + 11.25, + 8.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 11.25, + 8.0 + ], + "to": [ + 11.25, + 8.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -14529,90 +14758,93 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc 4957, 0 ] - }, - "ccw": true, - "center": [ - 8.0, - 8.0 - ], - "from": [ - 11.25, - 8.0 - ], - "radius": 3.25, - "tag": null, - "to": [ - 11.25, - 8.0 - ], - "type": "Circle", - "units": { - "type": "Mm" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "start": { - "from": [ - 11.25, - 8.0 - ], - "to": [ - 11.25, - 8.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4856, - 4957, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4856, + 4957, + 0 + ] + }, + "ccw": true, + "center": [ + 8.0, + 8.0 + ], + "from": [ + 11.25, + 8.0 + ], + "radius": 3.25, + "tag": null, + "to": [ + 11.25, + 8.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 11.25, + 8.0 + ], + "to": [ + 11.25, + 8.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -14620,90 +14852,93 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc 4957, 0 ] - }, - "ccw": true, - "center": [ - 8.0, - 8.0 - ], - "from": [ - 11.25, - 8.0 - ], - "radius": 3.25, - "tag": null, - "to": [ - 11.25, - 8.0 - ], - "type": "Circle", - "units": { - "type": "Mm" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "start": { - "from": [ - 11.25, - 8.0 - ], - "to": [ - 11.25, - 8.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4856, - 4957, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4856, + 4957, + 0 + ] + }, + "ccw": true, + "center": [ + 8.0, + 8.0 + ], + "from": [ + 11.25, + 8.0 + ], + "radius": 3.25, + "tag": null, + "to": [ + 11.25, + 8.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 11.25, + 8.0 + ], + "to": [ + 11.25, + 8.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -14711,90 +14946,93 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc 4957, 0 ] - }, - "ccw": true, - "center": [ - 8.0, - 8.0 - ], - "from": [ - 11.25, - 8.0 - ], - "radius": 3.25, - "tag": null, - "to": [ - 11.25, - 8.0 - ], - "type": "Circle", - "units": { - "type": "Mm" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "start": { - "from": [ - 11.25, - 8.0 - ], - "to": [ - 11.25, - 8.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4856, - 4957, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4856, + 4957, + 0 + ] + }, + "ccw": true, + "center": [ + 8.0, + 8.0 + ], + "from": [ + 11.25, + 8.0 + ], + "radius": 3.25, + "tag": null, + "to": [ + 11.25, + 8.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 11.25, + 8.0 + ], + "to": [ + 11.25, + 8.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -14802,83 +15040,13 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc 4957, 0 ] - }, - "ccw": true, - "center": [ - 8.0, - 8.0 - ], - "from": [ - 11.25, - 8.0 - ], - "radius": 3.25, - "tag": null, - "to": [ - 11.25, - 8.0 - ], - "type": "Circle", - "units": { - "type": "Mm" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "start": { - "from": [ - 11.25, - 8.0 - ], - "to": [ - 11.25, - 8.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4856, - 4957, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" } } ] @@ -14897,986 +15065,998 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc } }, "sides": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 976, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 984, - 1043, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1051, - 1078, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1086, - 1145, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1153, - 1160, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 921, - 946, + 954, + 976, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 976, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 984, + 1043, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1051, + 1078, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1145, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1153, + 1160, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 921, + 946, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/ops.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/ops.snap index 84639830d..6b16c1b08 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/ops.snap @@ -473,7 +473,7 @@ description: Operations executed gridfinity-baseplate.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -764,19 +764,31 @@ description: Operations executed gridfinity-baseplate.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -890,31 +902,55 @@ description: Operations executed gridfinity-baseplate.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1028,19 +1064,31 @@ description: Operations executed gridfinity-baseplate.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1154,31 +1202,55 @@ description: Operations executed gridfinity-baseplate.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/program_memory.snap index 6fc686273..5e6d88df8 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/program_memory.snap @@ -76,11771 +76,11915 @@ description: Variables in memory after executing gridfinity-baseplate.kcl } }, "basePlateCorners": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] }, "basePlateSides": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] @@ -11872,986 +12016,998 @@ description: Variables in memory after executing gridfinity-baseplate.kcl } }, "corners": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] @@ -12925,986 +13081,998 @@ description: Variables in memory after executing gridfinity-baseplate.kcl } }, "sides": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 831, - 853, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 4.65 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 861, - 920, - 0 - ] - }, - "from": [ - 0.0, - 4.65 - ], - "tag": null, - "to": [ - 2.15, - 2.5 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 928, - 955, - 0 - ] - }, - "from": [ - 2.15, - 2.5 - ], - "tag": null, - "to": [ - 2.15, - 0.7 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1022, - 0 - ] - }, - "from": [ - 2.15, - 0.7 - ], - "tag": null, - "to": [ - 2.85, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1030, - 1037, - 0 - ] - }, - "from": [ - 2.85, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 798, - 823, + 831, + 853, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 831, + 853, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 4.65 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 861, + 920, + 0 + ] + }, + "from": [ + 0.0, + 4.65 + ], + "tag": null, + "to": [ + 2.15, + 2.5 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 928, + 955, + 0 + ] + }, + "from": [ + 2.15, + 2.5 + ], + "tag": null, + "to": [ + 2.15, + 0.7 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1022, + 0 + ] + }, + "from": [ + 2.15, + 0.7 + ], + "tag": null, + "to": [ + 2.85, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1030, + 1037, + 0 + ] + }, + "from": [ + 2.85, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 798, + 823, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/ops.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/ops.snap index 15cc268a2..d296988bd 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/ops.snap @@ -473,7 +473,7 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -868,19 +868,31 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -988,19 +1000,31 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1108,31 +1132,55 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1240,19 +1288,31 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1360,31 +1420,55 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1601,13 +1685,19 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -3012,7 +3102,7 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -3346,7 +3436,7 @@ description: Operations executed gridfinity-bins-stacking-lip.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/program_memory.snap index f88bf3f6e..181bb352e 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/program_memory.snap @@ -166,6531 +166,6531 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc } }, "binCorners": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] }, "binFill": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ], - "tag": { - "end": 2712, - "start": 2704, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ], - "tag": { - "end": 2782, - "start": 2774, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ], - "tag": { - "end": 2841, - "start": 2833, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ], - "tag": { - "end": 2868, - "start": 2860, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 ], "tag": { "end": 2712, @@ -6698,27 +6698,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 ], "tag": { "end": 2782, @@ -6726,27 +6714,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 ], "tag": { "end": 2841, @@ -6754,27 +6730,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 ], "tag": { "end": 2868, @@ -6782,214 +6746,253 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2712, + "start": 2704, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2782, + "start": 2774, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2841, + "start": 2833, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2868, + "start": 2860, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2555, + 2643, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2555, - 2643, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ], - "tag": { - "end": 2712, - "start": 2704, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ], - "tag": { - "end": 2782, - "start": 2774, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ], - "tag": { - "end": 2841, - "start": 2833, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ], - "tag": { - "end": 2868, - "start": 2860, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 ], "tag": { "end": 2712, @@ -6997,27 +7000,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 ], "tag": { "end": 2782, @@ -7025,27 +7016,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 ], "tag": { "end": 2841, @@ -7053,27 +7032,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 ], "tag": { "end": 2868, @@ -7081,214 +7048,253 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2712, + "start": 2704, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2782, + "start": 2774, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2841, + "start": 2833, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2868, + "start": 2860, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2555, + 2643, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2555, - 2643, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ], - "tag": { - "end": 2712, - "start": 2704, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ], - "tag": { - "end": 2782, - "start": 2774, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ], - "tag": { - "end": 2841, - "start": 2833, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ], - "tag": { - "end": 2868, - "start": 2860, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 ], "tag": { "end": 2712, @@ -7296,27 +7302,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 ], "tag": { "end": 2782, @@ -7324,27 +7318,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 ], "tag": { "end": 2841, @@ -7352,27 +7334,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 ], "tag": { "end": 2868, @@ -7380,214 +7350,253 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2712, + "start": 2704, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2782, + "start": 2774, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2841, + "start": 2833, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2868, + "start": 2860, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2555, + 2643, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2555, - 2643, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ], - "tag": { - "end": 2712, - "start": 2704, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ], - "tag": { - "end": 2782, - "start": 2774, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ], - "tag": { - "end": 2841, - "start": 2833, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ], - "tag": { - "end": 2868, - "start": 2860, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 ], "tag": { "end": 2712, @@ -7595,27 +7604,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 ], "tag": { "end": 2782, @@ -7623,27 +7620,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 ], "tag": { "end": 2841, @@ -7651,27 +7636,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 ], "tag": { "end": 2868, @@ -7679,214 +7652,253 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2712, + "start": 2704, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2782, + "start": 2774, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2841, + "start": 2833, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2868, + "start": 2860, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2555, + 2643, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2555, - 2643, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ], - "tag": { - "end": 2712, - "start": 2704, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ], - "tag": { - "end": 2782, - "start": 2774, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ], - "tag": { - "end": 2841, - "start": 2833, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ], - "tag": { - "end": 2868, - "start": 2860, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 ], "tag": { "end": 2712, @@ -7894,27 +7906,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 ], "tag": { "end": 2782, @@ -7922,27 +7922,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 ], "tag": { "end": 2841, @@ -7950,27 +7938,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 ], "tag": { "end": 2868, @@ -7978,214 +7954,253 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2712, + "start": 2704, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2782, + "start": 2774, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2841, + "start": 2833, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2868, + "start": 2860, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2555, + 2643, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2555, - 2643, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ], - "tag": { - "end": 2712, - "start": 2704, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ], - "tag": { - "end": 2782, - "start": 2774, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ], - "tag": { - "end": 2841, - "start": 2833, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ], - "tag": { - "end": 2868, - "start": 2860, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 ], "tag": { "end": 2712, @@ -8193,27 +8208,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 ], "tag": { "end": 2782, @@ -8221,27 +8224,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 ], "tag": { "end": 2841, @@ -8249,27 +8240,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 ], "tag": { "end": 2868, @@ -8277,126 +8256,237 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2712, + "start": 2704, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2782, + "start": 2774, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2841, + "start": 2833, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2868, + "start": 2860, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2555, + 2643, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2555, - 2643, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } } ] @@ -8428,6438 +8518,6510 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc } }, "binSides": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] @@ -15206,1078 +15368,1090 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc } }, "corners": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] @@ -16391,133 +16565,22 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "value": "line013" }, "lipCorners000": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ], - "tag": { - "end": 5591, - "start": 5583, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ], - "tag": { - "end": 5708, - "start": 5701, - "type": "TagDeclarator", - "value": "arc000" - }, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ], - "tag": { - "end": 5832, - "start": 5824, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 ], "tag": { "end": 5591, @@ -16525,61 +16588,31 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 0.0, - 5.7929 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ] - }, - "ccw": false, - "center": [ - 0.5, - 5.7929 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 ], - "from": [ - 0.0, - 5.7929 - ], - "radius": 0.5, "tag": { "end": 5708, "start": 5701, "type": "TagDeclarator", "value": "arc000" }, - "to": [ - 0.8536, - 6.1464 - ], - "type": "Arc", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ] - }, - "from": [ - 0.8536, - 6.1464 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 ], "tag": { "end": 5832, @@ -16587,334 +16620,367 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 1.9, - 5.1 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 5591, + "start": 5583, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 0.0, + 5.7929 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 + ] + }, + "ccw": false, + "center": [ + 0.5, + 5.7929 + ], + "from": [ + 0.0, + 5.7929 + ], + "radius": 0.5, + "tag": { + "end": 5708, + "start": 5701, + "type": "TagDeclarator", + "value": "arc000" + }, + "to": [ + 0.8536, + 6.1464 + ], + "type": "Arc", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 + ] + }, + "from": [ + 0.8536, + 6.1464 + ], + "tag": { + "end": 5832, + "start": 5824, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 1.9, + 5.1 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 + ] + }, + "from": [ + 1.9, + 5.1 + ], + "tag": null, + "to": [ + 1.9, + 3.3 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ] + }, + "from": [ + 1.9, + 3.3 + ], + "tag": null, + "to": [ + 2.6, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ] + }, + "from": [ + 2.6, + 2.6 + ], + "tag": null, + "to": [ + 2.6, + 1.4 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ] + }, + "from": [ + 2.6, + 1.4 + ], + "tag": null, + "to": [ + 1.2, + -0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ] + }, + "from": [ + 1.2, + -0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 3.75, + "y": 0.0, + "z": 11.75 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ] - }, + "start": { "from": [ - 1.9, - 5.1 + 0.0, + 0.0 ], - "tag": null, - "to": [ - 1.9, - 3.3 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ] - }, - "from": [ - 1.9, - 3.3 - ], - "tag": null, - "to": [ - 2.6, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ] - }, - "from": [ - 2.6, - 2.6 - ], - "tag": null, - "to": [ - 2.6, - 1.4 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ] - }, - "from": [ - 2.6, - 1.4 - ], - "tag": null, - "to": [ - 1.2, - -0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ] - }, - "from": [ - 1.2, - -0.0 - ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5464, + 5489, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "arc000": { + "type": "TagIdentifier", + "value": "arc000" + }, + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + } + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 3.75, - "y": 0.0, - "z": 11.75 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5464, - 5489, - 0 - ] - } - }, - "tags": { - "arc000": { - "type": "TagIdentifier", - "value": "arc000" - }, - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ], - "tag": { - "end": 5591, - "start": 5583, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ], - "tag": { - "end": 5708, - "start": 5701, - "type": "TagDeclarator", - "value": "arc000" - }, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ], - "tag": { - "end": 5832, - "start": 5824, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 ], "tag": { "end": 5591, @@ -16922,61 +16988,31 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 0.0, - 5.7929 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ] - }, - "ccw": false, - "center": [ - 0.5, - 5.7929 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 ], - "from": [ - 0.0, - 5.7929 - ], - "radius": 0.5, "tag": { "end": 5708, "start": 5701, "type": "TagDeclarator", "value": "arc000" }, - "to": [ - 0.8536, - 6.1464 - ], - "type": "Arc", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ] - }, - "from": [ - 0.8536, - 6.1464 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 ], "tag": { "end": 5832, @@ -16984,339 +17020,372 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 1.9, - 5.1 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 5591, + "start": 5583, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 0.0, + 5.7929 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 + ] + }, + "ccw": false, + "center": [ + 0.5, + 5.7929 + ], + "from": [ + 0.0, + 5.7929 + ], + "radius": 0.5, + "tag": { + "end": 5708, + "start": 5701, + "type": "TagDeclarator", + "value": "arc000" + }, + "to": [ + 0.8536, + 6.1464 + ], + "type": "Arc", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 + ] + }, + "from": [ + 0.8536, + 6.1464 + ], + "tag": { + "end": 5832, + "start": 5824, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 1.9, + 5.1 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 + ] + }, + "from": [ + 1.9, + 5.1 + ], + "tag": null, + "to": [ + 1.9, + 3.3 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ] + }, + "from": [ + 1.9, + 3.3 + ], + "tag": null, + "to": [ + 2.6, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ] + }, + "from": [ + 2.6, + 2.6 + ], + "tag": null, + "to": [ + 2.6, + 1.4 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ] + }, + "from": [ + 2.6, + 1.4 + ], + "tag": null, + "to": [ + 1.2, + -0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ] + }, + "from": [ + 1.2, + -0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 3.75, + "y": 0.0, + "z": 11.75 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ] - }, + "start": { "from": [ - 1.9, - 5.1 + 0.0, + 0.0 ], - "tag": null, - "to": [ - 1.9, - 3.3 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ] - }, - "from": [ - 1.9, - 3.3 - ], - "tag": null, - "to": [ - 2.6, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ] - }, - "from": [ - 2.6, - 2.6 - ], - "tag": null, - "to": [ - 2.6, - 1.4 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ] - }, - "from": [ - 2.6, - 1.4 - ], - "tag": null, - "to": [ - 1.2, - -0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ] - }, - "from": [ - 1.2, - -0.0 - ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5464, + 5489, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "arc000": { + "type": "TagIdentifier", + "value": "arc000" + }, + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + } + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 3.75, - "y": 0.0, - "z": 11.75 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5464, - 5489, - 0 - ] - } - }, - "tags": { - "arc000": { - "type": "TagIdentifier", - "value": "arc000" - }, - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] }, "lipCorners001": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ], - "tag": { - "end": 5591, - "start": 5583, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ], - "tag": { - "end": 5708, - "start": 5701, - "type": "TagDeclarator", - "value": "arc000" - }, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ], - "tag": { - "end": 5832, - "start": 5824, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 ], "tag": { "end": 5591, @@ -17324,61 +17393,31 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 0.0, - 5.7929 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ] - }, - "ccw": false, - "center": [ - 0.5, - 5.7929 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 ], - "from": [ - 0.0, - 5.7929 - ], - "radius": 0.5, "tag": { "end": 5708, "start": 5701, "type": "TagDeclarator", "value": "arc000" }, - "to": [ - 0.8536, - 6.1464 - ], - "type": "Arc", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ] - }, - "from": [ - 0.8536, - 6.1464 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 ], "tag": { "end": 5832, @@ -17386,334 +17425,367 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 1.9, - 5.1 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 5591, + "start": 5583, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 0.0, + 5.7929 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 + ] + }, + "ccw": false, + "center": [ + 0.5, + 5.7929 + ], + "from": [ + 0.0, + 5.7929 + ], + "radius": 0.5, + "tag": { + "end": 5708, + "start": 5701, + "type": "TagDeclarator", + "value": "arc000" + }, + "to": [ + 0.8536, + 6.1464 + ], + "type": "Arc", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 + ] + }, + "from": [ + 0.8536, + 6.1464 + ], + "tag": { + "end": 5832, + "start": 5824, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 1.9, + 5.1 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 + ] + }, + "from": [ + 1.9, + 5.1 + ], + "tag": null, + "to": [ + 1.9, + 3.3 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ] + }, + "from": [ + 1.9, + 3.3 + ], + "tag": null, + "to": [ + 2.6, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ] + }, + "from": [ + 2.6, + 2.6 + ], + "tag": null, + "to": [ + 2.6, + 1.4 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ] + }, + "from": [ + 2.6, + 1.4 + ], + "tag": null, + "to": [ + 1.2, + -0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ] + }, + "from": [ + 1.2, + -0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 80.25, + "y": 0.0, + "z": 11.75 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ] - }, + "start": { "from": [ - 1.9, - 5.1 + 0.0, + 0.0 ], - "tag": null, - "to": [ - 1.9, - 3.3 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ] - }, - "from": [ - 1.9, - 3.3 - ], - "tag": null, - "to": [ - 2.6, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ] - }, - "from": [ - 2.6, - 2.6 - ], - "tag": null, - "to": [ - 2.6, - 1.4 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ] - }, - "from": [ - 2.6, - 1.4 - ], - "tag": null, - "to": [ - 1.2, - -0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ] - }, - "from": [ - 1.2, - -0.0 - ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5464, + 5489, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "arc000": { + "type": "TagIdentifier", + "value": "arc000" + }, + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + } + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 80.25, - "y": 0.0, - "z": 11.75 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5464, - 5489, - 0 - ] - } - }, - "tags": { - "arc000": { - "type": "TagIdentifier", - "value": "arc000" - }, - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ], - "tag": { - "end": 5591, - "start": 5583, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ], - "tag": { - "end": 5708, - "start": 5701, - "type": "TagDeclarator", - "value": "arc000" - }, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ], - "tag": { - "end": 5832, - "start": 5824, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 ], "tag": { "end": 5591, @@ -17721,61 +17793,31 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 0.0, - 5.7929 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ] - }, - "ccw": false, - "center": [ - 0.5, - 5.7929 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 ], - "from": [ - 0.0, - 5.7929 - ], - "radius": 0.5, "tag": { "end": 5708, "start": 5701, "type": "TagDeclarator", "value": "arc000" }, - "to": [ - 0.8536, - 6.1464 - ], - "type": "Arc", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ] - }, - "from": [ - 0.8536, - 6.1464 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 ], "tag": { "end": 5832, @@ -17783,207 +17825,351 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 1.9, - 5.1 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 5591, + "start": 5583, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 0.0, + 5.7929 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 + ] + }, + "ccw": false, + "center": [ + 0.5, + 5.7929 + ], + "from": [ + 0.0, + 5.7929 + ], + "radius": 0.5, + "tag": { + "end": 5708, + "start": 5701, + "type": "TagDeclarator", + "value": "arc000" + }, + "to": [ + 0.8536, + 6.1464 + ], + "type": "Arc", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 + ] + }, + "from": [ + 0.8536, + 6.1464 + ], + "tag": { + "end": 5832, + "start": 5824, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 1.9, + 5.1 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 + ] + }, + "from": [ + 1.9, + 5.1 + ], + "tag": null, + "to": [ + 1.9, + 3.3 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ] + }, + "from": [ + 1.9, + 3.3 + ], + "tag": null, + "to": [ + 2.6, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ] + }, + "from": [ + 2.6, + 2.6 + ], + "tag": null, + "to": [ + 2.6, + 1.4 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ] + }, + "from": [ + 2.6, + 1.4 + ], + "tag": null, + "to": [ + 1.2, + -0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ] + }, + "from": [ + 1.2, + -0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 80.25, + "y": 0.0, + "z": 11.75 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ] - }, + "start": { "from": [ - 1.9, - 5.1 + 0.0, + 0.0 ], - "tag": null, - "to": [ - 1.9, - 3.3 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ] - }, - "from": [ - 1.9, - 3.3 - ], - "tag": null, - "to": [ - 2.6, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ] - }, - "from": [ - 2.6, - 2.6 - ], - "tag": null, - "to": [ - 2.6, - 1.4 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ] - }, - "from": [ - 2.6, - 1.4 - ], - "tag": null, - "to": [ - 1.2, - -0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ] - }, - "from": [ - 1.2, - -0.0 - ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5464, + 5489, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "arc000": { + "type": "TagIdentifier", + "value": "arc000" + }, + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + } + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 80.25, - "y": 0.0, - "z": 11.75 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5464, - 5489, - 0 - ] - } - }, - "tags": { - "arc000": { - "type": "TagIdentifier", - "value": "arc000" - }, - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] @@ -18005,133 +18191,22 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc } }, "lipLengths": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ], - "tag": { - "end": 5591, - "start": 5583, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ], - "tag": { - "end": 5708, - "start": 5701, - "type": "TagDeclarator", - "value": "arc000" - }, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ], - "tag": { - "end": 5832, - "start": 5824, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 ], "tag": { "end": 5591, @@ -18139,61 +18214,31 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 0.0, - 5.7929 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ] - }, - "ccw": false, - "center": [ - 0.5, - 5.7929 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 ], - "from": [ - 0.0, - 5.7929 - ], - "radius": 0.5, "tag": { "end": 5708, "start": 5701, "type": "TagDeclarator", "value": "arc000" }, - "to": [ - 0.8536, - 6.1464 - ], - "type": "Arc", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ] - }, - "from": [ - 0.8536, - 6.1464 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 ], "tag": { "end": 5832, @@ -18201,334 +18246,367 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 1.9, - 5.1 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 5591, + "start": 5583, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 0.0, + 5.7929 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 + ] + }, + "ccw": false, + "center": [ + 0.5, + 5.7929 + ], + "from": [ + 0.0, + 5.7929 + ], + "radius": 0.5, + "tag": { + "end": 5708, + "start": 5701, + "type": "TagDeclarator", + "value": "arc000" + }, + "to": [ + 0.8536, + 6.1464 + ], + "type": "Arc", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 + ] + }, + "from": [ + 0.8536, + 6.1464 + ], + "tag": { + "end": 5832, + "start": 5824, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 1.9, + 5.1 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 + ] + }, + "from": [ + 1.9, + 5.1 + ], + "tag": null, + "to": [ + 1.9, + 3.3 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ] + }, + "from": [ + 1.9, + 3.3 + ], + "tag": null, + "to": [ + 2.6, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ] + }, + "from": [ + 2.6, + 2.6 + ], + "tag": null, + "to": [ + 2.6, + 1.4 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ] + }, + "from": [ + 2.6, + 1.4 + ], + "tag": null, + "to": [ + 1.2, + -0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ] + }, + "from": [ + 1.2, + -0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 3.75, + "y": 0.0, + "z": 11.75 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ] - }, + "start": { "from": [ - 1.9, - 5.1 + 0.0, + 0.0 ], - "tag": null, - "to": [ - 1.9, - 3.3 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ] - }, - "from": [ - 1.9, - 3.3 - ], - "tag": null, - "to": [ - 2.6, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ] - }, - "from": [ - 2.6, - 2.6 - ], - "tag": null, - "to": [ - 2.6, - 1.4 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ] - }, - "from": [ - 2.6, - 1.4 - ], - "tag": null, - "to": [ - 1.2, - -0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ] - }, - "from": [ - 1.2, - -0.0 - ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5464, + 5489, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "arc000": { + "type": "TagIdentifier", + "value": "arc000" + }, + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + } + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 3.75, - "y": 0.0, - "z": 11.75 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5464, - 5489, - 0 - ] - } - }, - "tags": { - "arc000": { - "type": "TagIdentifier", - "value": "arc000" - }, - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 76.5, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 76.5, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ], - "tag": { - "end": 5591, - "start": 5583, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ], - "tag": { - "end": 5708, - "start": 5701, - "type": "TagDeclarator", - "value": "arc000" - }, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ], - "tag": { - "end": 5832, - "start": 5824, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 ], "tag": { "end": 5591, @@ -18536,61 +18614,31 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 0.0, - 5.7929 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ] - }, - "ccw": false, - "center": [ - 0.5, - 5.7929 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 ], - "from": [ - 0.0, - 5.7929 - ], - "radius": 0.5, "tag": { "end": 5708, "start": 5701, "type": "TagDeclarator", "value": "arc000" }, - "to": [ - 0.8536, - 6.1464 - ], - "type": "Arc", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ] - }, - "from": [ - 0.8536, - 6.1464 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 ], "tag": { "end": 5832, @@ -18598,207 +18646,351 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 1.9, - 5.1 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 5591, + "start": 5583, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 0.0, + 5.7929 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 + ] + }, + "ccw": false, + "center": [ + 0.5, + 5.7929 + ], + "from": [ + 0.0, + 5.7929 + ], + "radius": 0.5, + "tag": { + "end": 5708, + "start": 5701, + "type": "TagDeclarator", + "value": "arc000" + }, + "to": [ + 0.8536, + 6.1464 + ], + "type": "Arc", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 + ] + }, + "from": [ + 0.8536, + 6.1464 + ], + "tag": { + "end": 5832, + "start": 5824, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 1.9, + 5.1 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 + ] + }, + "from": [ + 1.9, + 5.1 + ], + "tag": null, + "to": [ + 1.9, + 3.3 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ] + }, + "from": [ + 1.9, + 3.3 + ], + "tag": null, + "to": [ + 2.6, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ] + }, + "from": [ + 2.6, + 2.6 + ], + "tag": null, + "to": [ + 2.6, + 1.4 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ] + }, + "from": [ + 2.6, + 1.4 + ], + "tag": null, + "to": [ + 1.2, + -0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ] + }, + "from": [ + 1.2, + -0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 3.75, + "y": 0.0, + "z": 11.75 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ] - }, + "start": { "from": [ - 1.9, - 5.1 + 0.0, + 0.0 ], - "tag": null, - "to": [ - 1.9, - 3.3 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ] - }, - "from": [ - 1.9, - 3.3 - ], - "tag": null, - "to": [ - 2.6, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ] - }, - "from": [ - 2.6, - 2.6 - ], - "tag": null, - "to": [ - 2.6, - 1.4 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ] - }, - "from": [ - 2.6, - 1.4 - ], - "tag": null, - "to": [ - 1.2, - -0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ] - }, - "from": [ - 1.2, - -0.0 - ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5464, + 5489, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "arc000": { + "type": "TagIdentifier", + "value": "arc000" + }, + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + } + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 3.75, - "y": 0.0, - "z": 11.75 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5464, - 5489, - 0 - ] - } - }, - "tags": { - "arc000": { - "type": "TagIdentifier", - "value": "arc000" - }, - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 76.5, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 76.5, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] @@ -20482,133 +20674,22 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc } }, "lipWidths": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ], - "tag": { - "end": 5591, - "start": 5583, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ], - "tag": { - "end": 5708, - "start": 5701, - "type": "TagDeclarator", - "value": "arc000" - }, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ], - "tag": { - "end": 5832, - "start": 5824, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 ], "tag": { "end": 5591, @@ -20616,61 +20697,31 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 0.0, - 5.7929 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ] - }, - "ccw": false, - "center": [ - 0.5, - 5.7929 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 ], - "from": [ - 0.0, - 5.7929 - ], - "radius": 0.5, "tag": { "end": 5708, "start": 5701, "type": "TagDeclarator", "value": "arc000" }, - "to": [ - 0.8536, - 6.1464 - ], - "type": "Arc", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ] - }, - "from": [ - 0.8536, - 6.1464 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 ], "tag": { "end": 5832, @@ -20678,334 +20729,367 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 1.9, - 5.1 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 5591, + "start": 5583, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 0.0, + 5.7929 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 + ] + }, + "ccw": false, + "center": [ + 0.5, + 5.7929 + ], + "from": [ + 0.0, + 5.7929 + ], + "radius": 0.5, + "tag": { + "end": 5708, + "start": 5701, + "type": "TagDeclarator", + "value": "arc000" + }, + "to": [ + 0.8536, + 6.1464 + ], + "type": "Arc", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 + ] + }, + "from": [ + 0.8536, + 6.1464 + ], + "tag": { + "end": 5832, + "start": 5824, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 1.9, + 5.1 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 + ] + }, + "from": [ + 1.9, + 5.1 + ], + "tag": null, + "to": [ + 1.9, + 3.3 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ] + }, + "from": [ + 1.9, + 3.3 + ], + "tag": null, + "to": [ + 2.6, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ] + }, + "from": [ + 2.6, + 2.6 + ], + "tag": null, + "to": [ + 2.6, + 1.4 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ] + }, + "from": [ + 2.6, + 1.4 + ], + "tag": null, + "to": [ + 1.2, + -0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ] + }, + "from": [ + 1.2, + -0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 3.75, + "z": 11.75 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ] - }, + "start": { "from": [ - 1.9, - 5.1 + 0.0, + 0.0 ], - "tag": null, - "to": [ - 1.9, - 3.3 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ] - }, - "from": [ - 1.9, - 3.3 - ], - "tag": null, - "to": [ - 2.6, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ] - }, - "from": [ - 2.6, - 2.6 - ], - "tag": null, - "to": [ - 2.6, - 1.4 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ] - }, - "from": [ - 2.6, - 1.4 - ], - "tag": null, - "to": [ - 1.2, - -0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ] - }, - "from": [ - 1.2, - -0.0 - ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5464, + 5489, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "arc000": { + "type": "TagIdentifier", + "value": "arc000" + }, + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + } + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 3.75, - "z": 11.75 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5464, - 5489, - 0 - ] - } - }, - "tags": { - "arc000": { - "type": "TagIdentifier", - "value": "arc000" - }, - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 118.5, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 118.5, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ], - "tag": { - "end": 5591, - "start": 5583, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ], - "tag": { - "end": 5708, - "start": 5701, - "type": "TagDeclarator", - "value": "arc000" - }, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ], - "tag": { - "end": 5832, - "start": 5824, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5549, - 5592, - 0 - ] - }, - "from": [ - 0.0, - 0.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 ], "tag": { "end": 5591, @@ -21013,61 +21097,31 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 0.0, - 5.7929 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5600, - 5709, - 0 - ] - }, - "ccw": false, - "center": [ - 0.5, - 5.7929 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 ], - "from": [ - 0.0, - 5.7929 - ], - "radius": 0.5, "tag": { "end": 5708, "start": 5701, "type": "TagDeclarator", "value": "arc000" }, - "to": [ - 0.8536, - 6.1464 - ], - "type": "Arc", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5784, - 5833, - 0 - ] - }, - "from": [ - 0.8536, - 6.1464 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 ], "tag": { "end": 5832, @@ -21075,371 +21129,443 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 1.9, - 5.1 + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 ], - "type": "ToPoint", + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5549, + 5592, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 5591, + "start": 5583, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 0.0, + 5.7929 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5600, + 5709, + 0 + ] + }, + "ccw": false, + "center": [ + 0.5, + 5.7929 + ], + "from": [ + 0.0, + 5.7929 + ], + "radius": 0.5, + "tag": { + "end": 5708, + "start": 5701, + "type": "TagDeclarator", + "value": "arc000" + }, + "to": [ + 0.8536, + 6.1464 + ], + "type": "Arc", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5784, + 5833, + 0 + ] + }, + "from": [ + 0.8536, + 6.1464 + ], + "tag": { + "end": 5832, + "start": 5824, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 1.9, + 5.1 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5841, + 5866, + 0 + ] + }, + "from": [ + 1.9, + 5.1 + ], + "tag": null, + "to": [ + 1.9, + 3.3 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5874, + 5932, + 0 + ] + }, + "from": [ + 1.9, + 3.3 + ], + "tag": null, + "to": [ + 2.6, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5940, + 5965, + 0 + ] + }, + "from": [ + 2.6, + 2.6 + ], + "tag": null, + "to": [ + 2.6, + 1.4 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5973, + 6032, + 0 + ] + }, + "from": [ + 2.6, + 1.4 + ], + "tag": null, + "to": [ + 1.2, + -0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6040, + 6047, + 0 + ] + }, + "from": [ + 1.2, + -0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 3.75, + "z": 11.75 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5841, - 5866, - 0 - ] - }, + "start": { "from": [ - 1.9, - 5.1 + 0.0, + 0.0 ], - "tag": null, - "to": [ - 1.9, - 3.3 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5874, - 5932, - 0 - ] - }, - "from": [ - 1.9, - 3.3 - ], - "tag": null, - "to": [ - 2.6, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5940, - 5965, - 0 - ] - }, - "from": [ - 2.6, - 2.6 - ], - "tag": null, - "to": [ - 2.6, - 1.4 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5973, - 6032, - 0 - ] - }, - "from": [ - 2.6, - 1.4 - ], - "tag": null, - "to": [ - 1.2, - -0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6040, - 6047, - 0 - ] - }, - "from": [ - 1.2, - -0.0 - ], - "tag": null, "to": [ 0.0, 0.0 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5464, + 5489, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "arc000": { + "type": "TagIdentifier", + "value": "arc000" + }, + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + } + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 3.75, - "z": 11.75 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5464, - 5489, - 0 - ] - } - }, - "tags": { - "arc000": { - "type": "TagIdentifier", - "value": "arc000" - }, - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 118.5, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 118.5, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] }, "magCutout000": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3194, - 3359, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3194, - 3359, - 0 - ] - }, - "ccw": true, - "center": [ - -8.0, - 8.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3194, + 3359, + 0 ], - "from": [ - -4.75, - 8.0 - ], - "radius": 3.25, "tag": null, - "to": [ - -4.75, - 8.0 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3194, + 3359, + 0 + ] + }, + "ccw": true, + "center": [ + -8.0, + 8.0 + ], + "from": [ + -4.75, + 8.0 + ], + "radius": 3.25, + "tag": null, + "to": [ + -4.75, + 8.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ], - "tag": { - "end": 2712, - "start": 2704, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ], - "tag": { - "end": 2782, - "start": 2774, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ], - "tag": { - "end": 2841, - "start": 2833, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ], - "tag": { - "end": 2868, - "start": 2860, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 ], "tag": { "end": 2712, @@ -21447,27 +21573,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 ], "tag": { "end": 2782, @@ -21475,27 +21589,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 ], "tag": { "end": 2841, @@ -21503,27 +21605,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 ], "tag": { "end": 2868, @@ -21531,324 +21621,363 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2712, + "start": 2704, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2782, + "start": 2774, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2841, + "start": 2833, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2868, + "start": 2860, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2555, + 2643, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2555, - 2643, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -4.75, - 8.0 - ], - "to": [ - -4.75, - 8.0 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -4.75, + 8.0 + ], + "to": [ + -4.75, + 8.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3194, + 3359, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3194, - 3359, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -2.4, + "startCapId": "[uuid]", + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -2.4, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3194, - 3359, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3194, - 3359, - 0 - ] - }, - "ccw": true, - "center": [ - -8.0, - 8.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3194, + 3359, + 0 ], - "from": [ - -4.75, - 8.0 - ], - "radius": 3.25, "tag": null, - "to": [ - -4.75, - 8.0 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3194, + 3359, + 0 + ] + }, + "ccw": true, + "center": [ + -8.0, + 8.0 + ], + "from": [ + -4.75, + 8.0 + ], + "radius": 3.25, + "tag": null, + "to": [ + -4.75, + 8.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ], - "tag": { - "end": 2712, - "start": 2704, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ], - "tag": { - "end": 2782, - "start": 2774, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ], - "tag": { - "end": 2841, - "start": 2833, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ], - "tag": { - "end": 2868, - "start": 2860, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 ], "tag": { "end": 2712, @@ -21856,27 +21985,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 ], "tag": { "end": 2782, @@ -21884,27 +22001,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 ], "tag": { "end": 2841, @@ -21912,27 +22017,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 ], "tag": { "end": 2868, @@ -21940,324 +22033,363 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2712, + "start": 2704, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2782, + "start": 2774, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2841, + "start": 2833, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2868, + "start": 2860, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2555, + 2643, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2555, - 2643, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -4.75, - 8.0 - ], - "to": [ - -4.75, - 8.0 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -4.75, + 8.0 + ], + "to": [ + -4.75, + 8.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3194, + 3359, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3194, - 3359, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -2.4, + "startCapId": "[uuid]", + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -2.4, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3194, - 3359, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3194, - 3359, - 0 - ] - }, - "ccw": true, - "center": [ - -8.0, - 8.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3194, + 3359, + 0 ], - "from": [ - -4.75, - 8.0 - ], - "radius": 3.25, "tag": null, - "to": [ - -4.75, - 8.0 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3194, + 3359, + 0 + ] + }, + "ccw": true, + "center": [ + -8.0, + 8.0 + ], + "from": [ + -4.75, + 8.0 + ], + "radius": 3.25, + "tag": null, + "to": [ + -4.75, + 8.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ], - "tag": { - "end": 2712, - "start": 2704, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ], - "tag": { - "end": 2782, - "start": 2774, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ], - "tag": { - "end": 2841, - "start": 2833, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ], - "tag": { - "end": 2868, - "start": 2860, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 ], "tag": { "end": 2712, @@ -22265,27 +22397,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 ], "tag": { "end": 2782, @@ -22293,27 +22413,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 ], "tag": { "end": 2841, @@ -22321,27 +22429,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 ], "tag": { "end": 2868, @@ -22349,324 +22445,363 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2712, + "start": 2704, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2782, + "start": 2774, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2841, + "start": 2833, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2868, + "start": 2860, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2555, + 2643, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2555, - 2643, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -4.75, - 8.0 - ], - "to": [ - -4.75, - 8.0 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -4.75, + 8.0 + ], + "to": [ + -4.75, + 8.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3194, + 3359, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3194, - 3359, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -2.4, + "startCapId": "[uuid]", + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -2.4, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3194, - 3359, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3194, - 3359, - 0 - ] - }, - "ccw": true, - "center": [ - -8.0, - 8.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3194, + 3359, + 0 ], - "from": [ - -4.75, - 8.0 - ], - "radius": 3.25, "tag": null, - "to": [ - -4.75, - 8.0 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3194, + 3359, + 0 + ] + }, + "ccw": true, + "center": [ + -8.0, + 8.0 + ], + "from": [ + -4.75, + 8.0 + ], + "radius": 3.25, + "tag": null, + "to": [ + -4.75, + 8.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ], - "tag": { - "end": 2712, - "start": 2704, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ], - "tag": { - "end": 2782, - "start": 2774, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ], - "tag": { - "end": 2841, - "start": 2833, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ], - "tag": { - "end": 2868, - "start": 2860, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2649, - 2713, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 ], "tag": { "end": 2712, @@ -22674,27 +22809,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2719, - 2783, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 ], "tag": { "end": 2782, @@ -22702,27 +22825,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2789, - 2842, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 ], "tag": { "end": 2841, @@ -22730,27 +22841,15 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2848, - 2869, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 ], "tag": { "end": 2868, @@ -22758,165 +22857,276 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2649, + 2713, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2712, + "start": 2704, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2719, + 2783, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2782, + "start": 2774, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2789, + 2842, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2841, + "start": 2833, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2848, + 2869, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2868, + "start": 2860, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2555, + 2643, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2555, - 2643, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -4.75, - 8.0 - ], - "to": [ - -4.75, - 8.0 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -4.75, + 8.0 + ], + "to": [ + -4.75, + 8.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3194, + 3359, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3194, - 3359, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -2.4, + "startCapId": "[uuid]", + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -2.4, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Mm" } } ] @@ -23508,1078 +23718,1090 @@ description: Variables in memory after executing gridfinity-bins-stacking-lip.kc } }, "sides": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1240, - 1262, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1270, - 1300, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1308, - 1367, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1375, - 1402, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1410, - 1469, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1477, - 1484, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 1186, - 1232, + 1240, + 1262, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1262, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1270, + 1300, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1308, + 1367, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1375, + 1402, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1410, + 1469, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1477, + 1484, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1232, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/ops.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/ops.snap index 0270eb89a..2dddc0d02 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/ops.snap @@ -473,7 +473,7 @@ description: Operations executed gridfinity-bins.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -868,19 +868,31 @@ description: Operations executed gridfinity-bins.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -988,19 +1000,31 @@ description: Operations executed gridfinity-bins.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1108,31 +1132,55 @@ description: Operations executed gridfinity-bins.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1240,19 +1288,31 @@ description: Operations executed gridfinity-bins.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1360,31 +1420,55 @@ description: Operations executed gridfinity-bins.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1601,13 +1685,19 @@ description: Operations executed gridfinity-bins.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/program_memory.snap index 4ff249dda..da90f960b 100644 --- a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/program_memory.snap @@ -89,6531 +89,6531 @@ description: Variables in memory after executing gridfinity-bins.kcl } }, "binCorners": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] }, "binFill": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ], - "tag": { - "end": 2455, - "start": 2447, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ], - "tag": { - "end": 2525, - "start": 2517, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ], - "tag": { - "end": 2584, - "start": 2576, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ], - "tag": { - "end": 2611, - "start": 2603, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 ], "tag": { "end": 2455, @@ -6621,27 +6621,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 ], "tag": { "end": 2525, @@ -6649,27 +6637,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 ], "tag": { "end": 2584, @@ -6677,27 +6653,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 ], "tag": { "end": 2611, @@ -6705,214 +6669,253 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2455, + "start": 2447, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2525, + "start": 2517, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2584, + "start": 2576, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2611, + "start": 2603, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2298, + 2386, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2298, - 2386, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ], - "tag": { - "end": 2455, - "start": 2447, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ], - "tag": { - "end": 2525, - "start": 2517, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ], - "tag": { - "end": 2584, - "start": 2576, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ], - "tag": { - "end": 2611, - "start": 2603, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 ], "tag": { "end": 2455, @@ -6920,27 +6923,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 ], "tag": { "end": 2525, @@ -6948,27 +6939,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 ], "tag": { "end": 2584, @@ -6976,27 +6955,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 ], "tag": { "end": 2611, @@ -7004,214 +6971,253 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2455, + "start": 2447, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2525, + "start": 2517, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2584, + "start": 2576, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2611, + "start": 2603, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2298, + 2386, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2298, - 2386, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ], - "tag": { - "end": 2455, - "start": 2447, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ], - "tag": { - "end": 2525, - "start": 2517, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ], - "tag": { - "end": 2584, - "start": 2576, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ], - "tag": { - "end": 2611, - "start": 2603, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 ], "tag": { "end": 2455, @@ -7219,27 +7225,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 ], "tag": { "end": 2525, @@ -7247,27 +7241,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 ], "tag": { "end": 2584, @@ -7275,27 +7257,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 ], "tag": { "end": 2611, @@ -7303,214 +7273,253 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2455, + "start": 2447, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2525, + "start": 2517, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2584, + "start": 2576, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2611, + "start": 2603, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2298, + 2386, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2298, - 2386, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ], - "tag": { - "end": 2455, - "start": 2447, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ], - "tag": { - "end": 2525, - "start": 2517, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ], - "tag": { - "end": 2584, - "start": 2576, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ], - "tag": { - "end": 2611, - "start": 2603, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 ], "tag": { "end": 2455, @@ -7518,27 +7527,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 ], "tag": { "end": 2525, @@ -7546,27 +7543,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 ], "tag": { "end": 2584, @@ -7574,27 +7559,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 ], "tag": { "end": 2611, @@ -7602,214 +7575,253 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2455, + "start": 2447, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2525, + "start": 2517, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2584, + "start": 2576, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2611, + "start": 2603, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2298, + 2386, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2298, - 2386, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ], - "tag": { - "end": 2455, - "start": 2447, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ], - "tag": { - "end": 2525, - "start": 2517, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ], - "tag": { - "end": 2584, - "start": 2576, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ], - "tag": { - "end": 2611, - "start": 2603, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 ], "tag": { "end": 2455, @@ -7817,27 +7829,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 ], "tag": { "end": 2525, @@ -7845,27 +7845,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 ], "tag": { "end": 2584, @@ -7873,27 +7861,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 ], "tag": { "end": 2611, @@ -7901,214 +7877,253 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2455, + "start": 2447, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2525, + "start": 2517, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2584, + "start": 2576, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2611, + "start": 2603, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2298, + 2386, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2298, - 2386, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ], - "tag": { - "end": 2455, - "start": 2447, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ], - "tag": { - "end": 2525, - "start": 2517, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ], - "tag": { - "end": 2584, - "start": 2576, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ], - "tag": { - "end": 2611, - "start": 2603, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 ], "tag": { "end": 2455, @@ -8116,27 +8131,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 ], "tag": { "end": 2525, @@ -8144,27 +8147,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 ], "tag": { "end": 2584, @@ -8172,27 +8163,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 ], "tag": { "end": 2611, @@ -8200,126 +8179,237 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2455, + "start": 2447, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2525, + "start": 2517, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2584, + "start": 2576, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2611, + "start": 2603, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2298, + 2386, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2298, - 2386, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" } } ] @@ -8351,6438 +8441,6510 @@ description: Variables in memory after executing gridfinity-bins.kcl } }, "binSides": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] @@ -15129,1078 +15291,1090 @@ description: Variables in memory after executing gridfinity-bins.kcl } }, "corners": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] @@ -16314,165 +16488,93 @@ description: Variables in memory after executing gridfinity-bins.kcl "value": "line013" }, "magCutout000": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2937, - 3102, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2937, - 3102, - 0 - ] - }, - "ccw": true, - "center": [ - -8.0, - 8.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2937, + 3102, + 0 ], - "from": [ - -4.75, - 8.0 - ], - "radius": 3.25, "tag": null, - "to": [ - -4.75, - 8.0 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2937, + 3102, + 0 + ] + }, + "ccw": true, + "center": [ + -8.0, + 8.0 + ], + "from": [ + -4.75, + 8.0 + ], + "radius": 3.25, + "tag": null, + "to": [ + -4.75, + 8.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ], - "tag": { - "end": 2455, - "start": 2447, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ], - "tag": { - "end": 2525, - "start": 2517, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ], - "tag": { - "end": 2584, - "start": 2576, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ], - "tag": { - "end": 2611, - "start": 2603, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 ], "tag": { "end": 2455, @@ -16480,27 +16582,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 ], "tag": { "end": 2525, @@ -16508,27 +16598,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 ], "tag": { "end": 2584, @@ -16536,27 +16614,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 ], "tag": { "end": 2611, @@ -16564,324 +16630,363 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2455, + "start": 2447, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2525, + "start": 2517, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2584, + "start": 2576, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2611, + "start": 2603, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2298, + 2386, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2298, - 2386, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -4.75, - 8.0 - ], - "to": [ - -4.75, - 8.0 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -4.75, + 8.0 + ], + "to": [ + -4.75, + 8.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2937, + 3102, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2937, - 3102, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -2.4, + "startCapId": "[uuid]", + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -2.4, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2937, - 3102, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2937, - 3102, - 0 - ] - }, - "ccw": true, - "center": [ - -8.0, - 8.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2937, + 3102, + 0 ], - "from": [ - -4.75, - 8.0 - ], - "radius": 3.25, "tag": null, - "to": [ - -4.75, - 8.0 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2937, + 3102, + 0 + ] + }, + "ccw": true, + "center": [ + -8.0, + 8.0 + ], + "from": [ + -4.75, + 8.0 + ], + "radius": 3.25, + "tag": null, + "to": [ + -4.75, + 8.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ], - "tag": { - "end": 2455, - "start": 2447, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ], - "tag": { - "end": 2525, - "start": 2517, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ], - "tag": { - "end": 2584, - "start": 2576, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ], - "tag": { - "end": 2611, - "start": 2603, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 ], "tag": { "end": 2455, @@ -16889,27 +16994,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 ], "tag": { "end": 2525, @@ -16917,27 +17010,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 ], "tag": { "end": 2584, @@ -16945,27 +17026,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 ], "tag": { "end": 2611, @@ -16973,324 +17042,363 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2455, + "start": 2447, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2525, + "start": 2517, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2584, + "start": 2576, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2611, + "start": 2603, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2298, + 2386, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2298, - 2386, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -4.75, - 8.0 - ], - "to": [ - -4.75, - 8.0 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -4.75, + 8.0 + ], + "to": [ + -4.75, + 8.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2937, + 3102, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2937, - 3102, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -2.4, + "startCapId": "[uuid]", + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -2.4, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2937, - 3102, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2937, - 3102, - 0 - ] - }, - "ccw": true, - "center": [ - -8.0, - 8.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2937, + 3102, + 0 ], - "from": [ - -4.75, - 8.0 - ], - "radius": 3.25, "tag": null, - "to": [ - -4.75, - 8.0 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2937, + 3102, + 0 + ] + }, + "ccw": true, + "center": [ + -8.0, + 8.0 + ], + "from": [ + -4.75, + 8.0 + ], + "radius": 3.25, + "tag": null, + "to": [ + -4.75, + 8.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ], - "tag": { - "end": 2455, - "start": 2447, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ], - "tag": { - "end": 2525, - "start": 2517, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ], - "tag": { - "end": 2584, - "start": 2576, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ], - "tag": { - "end": 2611, - "start": 2603, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 ], "tag": { "end": 2455, @@ -17298,27 +17406,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 ], "tag": { "end": 2525, @@ -17326,27 +17422,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 ], "tag": { "end": 2584, @@ -17354,27 +17438,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 ], "tag": { "end": 2611, @@ -17382,324 +17454,363 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2455, + "start": 2447, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2525, + "start": 2517, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2584, + "start": 2576, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2611, + "start": 2603, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2298, + 2386, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2298, - 2386, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -4.75, - 8.0 - ], - "to": [ - -4.75, - 8.0 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -4.75, + 8.0 + ], + "to": [ + -4.75, + 8.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2937, + 3102, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2937, - 3102, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -2.4, + "startCapId": "[uuid]", + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -2.4, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2937, - 3102, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2937, - 3102, - 0 - ] - }, - "ccw": true, - "center": [ - -8.0, - 8.0 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2937, + 3102, + 0 ], - "from": [ - -4.75, - 8.0 - ], - "radius": 3.25, "tag": null, - "to": [ - -4.75, - 8.0 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2937, + 3102, + 0 + ] + }, + "ccw": true, + "center": [ + -8.0, + 8.0 + ], + "from": [ + -4.75, + 8.0 + ], + "radius": 3.25, + "tag": null, + "to": [ + -4.75, + 8.0 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ], - "tag": { - "end": 2455, - "start": 2447, - "type": "TagDeclarator", - "value": "line000" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ], - "tag": { - "end": 2525, - "start": 2517, - "type": "TagDeclarator", - "value": "line001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ], - "tag": { - "end": 2584, - "start": 2576, - "type": "TagDeclarator", - "value": "line002" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ], - "tag": { - "end": 2611, - "start": 2603, - "type": "TagDeclarator", - "value": "line003" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2392, - 2456, - 0 - ] - }, - "from": [ - 3.2, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 ], "tag": { "end": 2455, @@ -17707,27 +17818,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line000" }, - "to": [ - 38.8, - 3.2 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2462, - 2526, - 0 - ] - }, - "from": [ - 38.8, - 3.2 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 ], "tag": { "end": 2525, @@ -17735,27 +17834,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line001" }, - "to": [ - 38.8, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2532, - 2585, - 0 - ] - }, - "from": [ - 38.8, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 ], "tag": { "end": 2584, @@ -17763,27 +17850,15 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line002" }, - "to": [ - 3.2, - 38.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2591, - 2612, - 0 - ] - }, - "from": [ - 3.2, - 38.8 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 ], "tag": { "end": 2611, @@ -17791,165 +17866,276 @@ description: Variables in memory after executing gridfinity-bins.kcl "type": "TagDeclarator", "value": "line003" }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2392, + 2456, + 0 + ] + }, + "from": [ + 3.2, + 3.2 + ], + "tag": { + "end": 2455, + "start": 2447, + "type": "TagDeclarator", + "value": "line000" + }, + "to": [ + 38.8, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2462, + 2526, + 0 + ] + }, + "from": [ + 38.8, + 3.2 + ], + "tag": { + "end": 2525, + "start": 2517, + "type": "TagDeclarator", + "value": "line001" + }, + "to": [ + 38.8, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2532, + 2585, + 0 + ] + }, + "from": [ + 38.8, + 38.8 + ], + "tag": { + "end": 2584, + "start": 2576, + "type": "TagDeclarator", + "value": "line002" + }, + "to": [ + 3.2, + 38.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2591, + 2612, + 0 + ] + }, + "from": [ + 3.2, + 38.8 + ], + "tag": { + "end": 2611, + "start": 2603, + "type": "TagDeclarator", + "value": "line003" + }, + "to": [ + 3.2, + 3.2 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 3.2 + ], "to": [ 3.2, 3.2 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2298, + 2386, + 0 + ] } + }, + "tags": { + "line000": { + "type": "TagIdentifier", + "value": "line000" + }, + "line001": { + "type": "TagIdentifier", + "value": "line001" + }, + "line002": { + "type": "TagIdentifier", + "value": "line002" + }, + "line003": { + "type": "TagIdentifier", + "value": "line003" + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + } + }, + "height": 4.75, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.8, + "edgeId": "[uuid]", + "tag": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 3.2 - ], - "to": [ - 3.2, - 3.2 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2298, - 2386, - 0 - ] - } - }, - "tags": { - "line000": { - "type": "TagIdentifier", - "value": "line000" - }, - "line001": { - "type": "TagIdentifier", - "value": "line001" - }, - "line002": { - "type": "TagIdentifier", - "value": "line002" - }, - "line003": { - "type": "TagIdentifier", - "value": "line003" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", "units": { "type": "Mm" } }, - "height": 4.75, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.8, - "edgeId": "[uuid]", - "tag": null - } - ], "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -4.75, - 8.0 - ], - "to": [ - -4.75, - 8.0 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -4.75, + 8.0 + ], + "to": [ + -4.75, + 8.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2937, + 3102, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2937, - 3102, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -2.4, + "startCapId": "[uuid]", + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -2.4, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Mm" } } ] @@ -18007,1078 +18193,1090 @@ description: Variables in memory after executing gridfinity-bins.kcl } }, "sides": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 981, - 1003, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1011, - 1041, - 0 - ] - }, - "from": [ - 3.2, - 4.75 - ], - "tag": null, - "to": [ - 0.25, - 4.75 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1049, - 1108, - 0 - ] - }, - "from": [ - 0.25, - 4.75 - ], - "tag": null, - "to": [ - 2.4, - 2.6 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1116, - 1143, - 0 - ] - }, - "from": [ - 2.4, - 2.6 - ], - "tag": null, - "to": [ - 2.4, - 0.8 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1151, - 1210, - 0 - ] - }, - "from": [ - 2.4, - 0.8 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1218, - 1225, - 0 - ] - }, - "from": [ - 3.2, - 0.0 - ], - "tag": null, - "to": [ - 3.2, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 4.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 3.2, - 0.0 - ], - "to": [ - 3.2, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 927, - 973, + 981, + 1003, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 981, + 1003, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1011, + 1041, + 0 + ] + }, + "from": [ + 3.2, + 4.75 + ], + "tag": null, + "to": [ + 0.25, + 4.75 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1049, + 1108, + 0 + ] + }, + "from": [ + 0.25, + 4.75 + ], + "tag": null, + "to": [ + 2.4, + 2.6 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1116, + 1143, + 0 + ] + }, + "from": [ + 2.4, + 2.6 + ], + "tag": null, + "to": [ + 2.4, + 0.8 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1151, + 1210, + 0 + ] + }, + "from": [ + 2.4, + 0.8 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1218, + 1225, + 0 + ] + }, + "from": [ + 3.2, + 0.0 + ], + "tag": null, + "to": [ + 3.2, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 4.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 3.2, + 0.0 + ], + "to": [ + 3.2, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 927, + 973, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 34.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 34.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/i-beam/ops.snap b/rust/kcl-lib/tests/kcl_samples/i-beam/ops.snap index 6df083361..d384e13af 100644 --- a/rust/kcl-lib/tests/kcl_samples/i-beam/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/i-beam/ops.snap @@ -58,12 +58,10 @@ description: Operations executed i-beam.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", - "value": [ - { - "artifactId": "[uuid]" - } - ] + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, "sourceRange": [ 652, diff --git a/rust/kcl-lib/tests/kcl_samples/lego/ops.snap b/rust/kcl-lib/tests/kcl_samples/lego/ops.snap index 51047bf7a..a092cbae5 100644 --- a/rust/kcl-lib/tests/kcl_samples/lego/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/lego/ops.snap @@ -212,157 +212,307 @@ description: Operations executed lego.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -441,115 +591,223 @@ description: Operations executed lego.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, diff --git a/rust/kcl-lib/tests/kcl_samples/lego/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/lego/program_memory.snap index 699c75a13..a65cea89e 100644 --- a/rust/kcl-lib/tests/kcl_samples/lego/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/lego/program_memory.snap @@ -290,30 +290,309 @@ description: Variables in memory after executing lego.kcl } }, "peg": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -321,320 +600,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -642,320 +924,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -963,320 +1248,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -1284,320 +1572,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -1605,320 +1896,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -1926,320 +2220,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -2247,320 +2544,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -2568,320 +2868,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -2889,320 +3192,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -3210,320 +3516,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -3531,320 +3840,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -3852,320 +4164,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -4173,320 +4488,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -4494,320 +4812,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -4815,320 +5136,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -5136,320 +5460,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -5457,320 +5784,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -5778,320 +6108,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -6099,320 +6432,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -6420,320 +6756,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -6741,320 +7080,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -7062,320 +7404,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -7383,320 +7728,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -7704,320 +8052,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -8025,320 +8376,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -8346,320 +8700,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -8667,320 +9024,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -8988,320 +9348,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -9309,320 +9672,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -9630,320 +9996,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -9951,320 +10320,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -10272,320 +10644,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -10593,320 +10968,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -10914,320 +11292,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -11235,320 +11616,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -11556,320 +11940,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -11877,320 +12264,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -12198,320 +12588,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -12519,320 +12912,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -12840,320 +13236,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -13161,320 +13560,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -13482,320 +13884,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -13803,320 +14208,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -14124,320 +14532,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -14445,320 +14856,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -14766,320 +15180,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -15087,320 +15504,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -15408,320 +15828,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -15729,320 +16152,323 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1757, + 1903, + 0 + ] + }, + "ccw": true, + "center": [ + -16.0, + -36.0 + ], + "from": [ + -13.6, + -36.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -13.6, + -36.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -13.6, + -36.0 + ], + "to": [ + -13.6, + -36.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -16050,296 +16476,20 @@ description: Variables in memory after executing lego.kcl 1903, 0 ] - }, - "ccw": true, - "center": [ - -16.0, - -36.0 - ], - "from": [ - -13.6, - -36.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -13.6, - -36.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -13.6, - -36.0 - ], - "to": [ - -13.6, - -36.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1757, - 1903, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } } ] @@ -16806,30 +16956,515 @@ description: Variables in memory after executing lego.kcl } }, "tubePattern": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -16837,526 +17472,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -17364,526 +18002,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -17891,526 +18532,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -18418,526 +19062,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -18945,526 +19592,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -19472,526 +20122,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -19999,526 +20652,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -20526,526 +21182,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -21053,526 +21712,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -21580,526 +22242,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -22107,526 +22772,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -22634,526 +23302,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -23161,526 +23832,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -23688,526 +24362,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -24215,526 +24892,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -24742,526 +25422,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -25269,526 +25952,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -25796,526 +26482,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -26323,526 +27012,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -26850,526 +27542,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -27377,526 +28072,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -27904,526 +28602,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -28431,526 +29132,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -28958,526 +29662,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -29485,526 +30192,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -30012,526 +30722,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -30539,526 +31252,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -31066,526 +31782,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -31593,526 +32312,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -32120,526 +32842,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -32647,526 +33372,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -33174,526 +33902,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -33701,526 +34432,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -34228,526 +34962,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -34755,526 +35492,529 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2244, + 2418, + 0 + ] + }, + "ccw": true, + "center": [ + -12.0, + -32.0 + ], + "from": [ + -9.6, + -32.0 + ], + "radius": 2.4, + "tag": null, + "to": [ + -9.6, + -32.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1498, + 1535, + 0 + ] + }, + "from": [ + -18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1541, + 1579, + 0 + ] + }, + "from": [ + 18.4, + -38.4 + ], + "tag": null, + "to": [ + 18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1585, + 1625, + 0 + ] + }, + "from": [ + 18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + 38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1631, + 1638, + 0 + ] + }, + "from": [ + -18.4, + 38.4 + ], + "tag": null, + "to": [ + -18.4, + -38.4 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1055, + 1082, + 0 + ] + }, + "from": [ + -19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1088, + 1116, + 0 + ] + }, + "from": [ + 19.9, + -39.9 + ], + "tag": null, + "to": [ + 19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1122, + 1150, + 0 + ] + }, + "from": [ + 19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + 39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1156, + 1163, + 0 + ] + }, + "from": [ + -19.9, + 39.9 + ], + "tag": null, + "to": [ + -19.9, + -39.9 + ], + "type": "ToPoint", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -19.9, + -39.9 + ], + "to": [ + -19.9, + -39.9 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 995, + 1049, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": 3.2, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -18.4, + -38.4 + ], + "to": [ + -18.4, + -38.4 + ], + "units": { + "type": "Inches" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1492, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + } + }, + "height": -1.7000000000000002, + "startCapId": "[uuid]", + "endCapId": null, + "units": { + "type": "Inches" + } + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + -9.6, + -32.0 + ], + "to": [ + -9.6, + -32.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -35282,502 +36022,20 @@ description: Variables in memory after executing lego.kcl 2418, 0 ] - }, - "ccw": true, - "center": [ - -12.0, - -32.0 - ], - "from": [ - -9.6, - -32.0 - ], - "radius": 2.4, - "tag": null, - "to": [ - -9.6, - -32.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "face", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1498, - 1535, - 0 - ] - }, - "from": [ - -18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1541, - 1579, - 0 - ] - }, - "from": [ - 18.4, - -38.4 - ], - "tag": null, - "to": [ - 18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1585, - 1625, - 0 - ] - }, - "from": [ - 18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - 38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1631, - 1638, - 0 - ] - }, - "from": [ - -18.4, - 38.4 - ], - "tag": null, - "to": [ - -18.4, - -38.4 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1055, - 1082, - 0 - ] - }, - "from": [ - -19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1088, - 1116, - 0 - ] - }, - "from": [ - 19.9, - -39.9 - ], - "tag": null, - "to": [ - 19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1122, - 1150, - 0 - ] - }, - "from": [ - 19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - 39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1156, - 1163, - 0 - ] - }, - "from": [ - -19.9, - 39.9 - ], - "tag": null, - "to": [ - -19.9, - -39.9 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -19.9, - -39.9 - ], - "to": [ - -19.9, - -39.9 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 995, - 1049, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.2, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - -18.4, - -38.4 - ], - "to": [ - -18.4, - -38.4 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1492, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -1.7000000000000002, - "startCapId": "[uuid]", - "endCapId": null, - "units": { - "type": "Inches" - } - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - -9.6, - -32.0 - ], - "to": [ - -9.6, - -32.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2244, - 2418, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.8, + "startCapId": null, + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": 1.8, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Inches" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/ops.snap b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/ops.snap index 856f6a977..43e085484 100644 --- a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/ops.snap @@ -506,19 +506,31 @@ description: Operations executed multi-axis-robot.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -597,19 +609,31 @@ description: Operations executed multi-axis-robot.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -1490,19 +1514,31 @@ description: Operations executed multi-axis-robot.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -2593,31 +2629,55 @@ description: Operations executed multi-axis-robot.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -2772,19 +2832,31 @@ description: Operations executed multi-axis-robot.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -3550,31 +3622,55 @@ description: Operations executed multi-axis-robot.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, diff --git a/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/ops.snap b/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/ops.snap index d21646410..346b289b7 100644 --- a/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/ops.snap @@ -67,7 +67,7 @@ description: Operations executed pipe-flange-assembly.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { @@ -117,28 +117,49 @@ description: Operations executed pipe-flange-assembly.kcl "labeledArgs": { "holeSketch": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -280,28 +301,49 @@ description: Operations executed pipe-flange-assembly.kcl "labeledArgs": { "holeSketch": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, diff --git a/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/program_memory.snap index 60d38ce45..83256a201 100644 --- a/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/program_memory.snap +++ b/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/program_memory.snap @@ -445,13 +445,86 @@ description: Variables in memory after executing pipe-flange-assembly.kcl } }, "mountingHolePattern": { - "type": "Sketches", + "type": "HomArray", "value": [ { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4357, + 4454, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 1.375 + ], + "from": [ + 0.1975, + 1.375 + ], + "radius": 0.1975, + "tag": null, + "to": [ + 0.1975, + 1.375 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.1975, + 1.375 + ], + "to": [ + 0.1975, + 1.375 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -459,90 +532,93 @@ description: Variables in memory after executing pipe-flange-assembly.kcl 4454, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 1.375 - ], - "from": [ - 0.1975, - 1.375 - ], - "radius": 0.1975, - "tag": null, - "to": [ - 0.1975, - 1.375 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } - }, - "start": { - "from": [ - 0.1975, - 1.375 - ], - "to": [ - 0.1975, - 1.375 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4357, - 4454, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4357, + 4454, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 1.375 + ], + "from": [ + 0.1975, + 1.375 + ], + "radius": 0.1975, + "tag": null, + "to": [ + 0.1975, + 1.375 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.1975, + 1.375 + ], + "to": [ + 0.1975, + 1.375 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -550,90 +626,93 @@ description: Variables in memory after executing pipe-flange-assembly.kcl 4454, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 1.375 - ], - "from": [ - 0.1975, - 1.375 - ], - "radius": 0.1975, - "tag": null, - "to": [ - 0.1975, - 1.375 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } - }, - "start": { - "from": [ - 0.1975, - 1.375 - ], - "to": [ - 0.1975, - 1.375 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4357, - 4454, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4357, + 4454, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 1.375 + ], + "from": [ + 0.1975, + 1.375 + ], + "radius": 0.1975, + "tag": null, + "to": [ + 0.1975, + 1.375 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.1975, + 1.375 + ], + "to": [ + 0.1975, + 1.375 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -641,90 +720,93 @@ description: Variables in memory after executing pipe-flange-assembly.kcl 4454, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 1.375 - ], - "from": [ - 0.1975, - 1.375 - ], - "radius": 0.1975, - "tag": null, - "to": [ - 0.1975, - 1.375 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } - }, - "start": { - "from": [ - 0.1975, - 1.375 - ], - "to": [ - 0.1975, - 1.375 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4357, - 4454, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4357, + 4454, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 1.375 + ], + "from": [ + 0.1975, + 1.375 + ], + "radius": 0.1975, + "tag": null, + "to": [ + 0.1975, + 1.375 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.1975, + 1.375 + ], + "to": [ + 0.1975, + 1.375 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -732,90 +814,93 @@ description: Variables in memory after executing pipe-flange-assembly.kcl 4454, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 1.375 - ], - "from": [ - 0.1975, - 1.375 - ], - "radius": 0.1975, - "tag": null, - "to": [ - 0.1975, - 1.375 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } - }, - "start": { - "from": [ - 0.1975, - 1.375 - ], - "to": [ - 0.1975, - 1.375 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4357, - 4454, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4357, + 4454, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 1.375 + ], + "from": [ + 0.1975, + 1.375 + ], + "radius": 0.1975, + "tag": null, + "to": [ + 0.1975, + 1.375 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.1975, + 1.375 + ], + "to": [ + 0.1975, + 1.375 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -823,90 +908,93 @@ description: Variables in memory after executing pipe-flange-assembly.kcl 4454, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 1.375 - ], - "from": [ - 0.1975, - 1.375 - ], - "radius": 0.1975, - "tag": null, - "to": [ - 0.1975, - 1.375 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } - }, - "start": { - "from": [ - 0.1975, - 1.375 - ], - "to": [ - 0.1975, - 1.375 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4357, - 4454, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4357, + 4454, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 1.375 + ], + "from": [ + 0.1975, + 1.375 + ], + "radius": 0.1975, + "tag": null, + "to": [ + 0.1975, + 1.375 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.1975, + 1.375 + ], + "to": [ + 0.1975, + 1.375 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -914,90 +1002,93 @@ description: Variables in memory after executing pipe-flange-assembly.kcl 4454, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 1.375 - ], - "from": [ - 0.1975, - 1.375 - ], - "radius": 0.1975, - "tag": null, - "to": [ - 0.1975, - 1.375 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } - }, - "start": { - "from": [ - 0.1975, - 1.375 - ], - "to": [ - 0.1975, - 1.375 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4357, - 4454, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Sketch", - "id": "[uuid]", - "paths": [ - { + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4357, + 4454, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 1.375 + ], + "from": [ + 0.1975, + 1.375 + ], + "radius": 0.1975, + "tag": null, + "to": [ + 0.1975, + 1.375 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.1975, + 1.375 + ], + "to": [ + 0.1975, + 1.375 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -1005,83 +1096,13 @@ description: Variables in memory after executing pipe-flange-assembly.kcl 4454, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 1.375 - ], - "from": [ - 0.1975, - 1.375 - ], - "radius": 0.1975, - "tag": null, - "to": [ - 0.1975, - 1.375 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } - }, - "start": { - "from": [ - 0.1975, - 1.375 - ], - "to": [ - 0.1975, - 1.375 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4357, - 4454, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" } } ] @@ -1607,30 +1628,103 @@ description: Variables in memory after executing pipe-flange-assembly.kcl } }, "screwBody": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6648, - 6715, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6648, + 6715, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6648, + 6715, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 0.1875, + 0.0 + ], + "radius": 0.1875, + "tag": null, + "to": [ + 0.1875, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.1875, + "z": 1.375 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.1875, + 0.0 + ], + "to": [ + 0.1875, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -1638,114 +1732,117 @@ description: Variables in memory after executing pipe-flange-assembly.kcl 6715, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 0.1875, - 0.0 - ], - "radius": 0.1875, - "tag": null, - "to": [ - 0.1875, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.1875, - "z": 1.375 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.1875, - 0.0 - ], - "to": [ - 0.1875, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6648, - 6715, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -1.125, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": -1.125, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6648, - 6715, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6648, + 6715, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6648, + 6715, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 0.1875, + 0.0 + ], + "radius": 0.1875, + "tag": null, + "to": [ + 0.1875, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.1875, + "z": 1.375 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.1875, + 0.0 + ], + "to": [ + 0.1875, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -1753,114 +1850,117 @@ description: Variables in memory after executing pipe-flange-assembly.kcl 6715, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 0.1875, - 0.0 - ], - "radius": 0.1875, - "tag": null, - "to": [ - 0.1875, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.1875, - "z": 1.375 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.1875, - 0.0 - ], - "to": [ - 0.1875, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6648, - 6715, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -1.125, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": -1.125, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6648, - 6715, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6648, + 6715, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6648, + 6715, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 0.1875, + 0.0 + ], + "radius": 0.1875, + "tag": null, + "to": [ + 0.1875, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.1875, + "z": 1.375 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.1875, + 0.0 + ], + "to": [ + 0.1875, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -1868,114 +1968,117 @@ description: Variables in memory after executing pipe-flange-assembly.kcl 6715, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 0.1875, - 0.0 - ], - "radius": 0.1875, - "tag": null, - "to": [ - 0.1875, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.1875, - "z": 1.375 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.1875, - 0.0 - ], - "to": [ - 0.1875, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6648, - 6715, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -1.125, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": -1.125, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6648, - 6715, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6648, + 6715, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6648, + 6715, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 0.1875, + 0.0 + ], + "radius": 0.1875, + "tag": null, + "to": [ + 0.1875, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.1875, + "z": 1.375 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.1875, + 0.0 + ], + "to": [ + 0.1875, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -1983,114 +2086,117 @@ description: Variables in memory after executing pipe-flange-assembly.kcl 6715, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 0.1875, - 0.0 - ], - "radius": 0.1875, - "tag": null, - "to": [ - 0.1875, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.1875, - "z": 1.375 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.1875, - 0.0 - ], - "to": [ - 0.1875, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6648, - 6715, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -1.125, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": -1.125, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6648, - 6715, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6648, + 6715, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6648, + 6715, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 0.1875, + 0.0 + ], + "radius": 0.1875, + "tag": null, + "to": [ + 0.1875, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.1875, + "z": 1.375 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.1875, + 0.0 + ], + "to": [ + 0.1875, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -2098,114 +2204,117 @@ description: Variables in memory after executing pipe-flange-assembly.kcl 6715, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 0.1875, - 0.0 - ], - "radius": 0.1875, - "tag": null, - "to": [ - 0.1875, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.1875, - "z": 1.375 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.1875, - 0.0 - ], - "to": [ - 0.1875, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6648, - 6715, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -1.125, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": -1.125, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6648, - 6715, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6648, + 6715, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6648, + 6715, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 0.1875, + 0.0 + ], + "radius": 0.1875, + "tag": null, + "to": [ + 0.1875, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.1875, + "z": 1.375 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.1875, + 0.0 + ], + "to": [ + 0.1875, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -2213,114 +2322,117 @@ description: Variables in memory after executing pipe-flange-assembly.kcl 6715, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 0.1875, - 0.0 - ], - "radius": 0.1875, - "tag": null, - "to": [ - 0.1875, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.1875, - "z": 1.375 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.1875, - 0.0 - ], - "to": [ - 0.1875, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6648, - 6715, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -1.125, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": -1.125, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6648, - 6715, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6648, + 6715, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6648, + 6715, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 0.1875, + 0.0 + ], + "radius": 0.1875, + "tag": null, + "to": [ + 0.1875, + 0.0 + ], + "type": "Circle", + "units": { + "type": "Inches" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.1875, + "z": 1.375 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "units": { + "type": "Inches" + } + }, + "start": { + "from": [ + 0.1875, + 0.0 + ], + "to": [ + 0.1875, + 0.0 + ], + "units": { + "type": "Inches" + }, + "tag": null, "__geoMeta": { "id": "[uuid]", "sourceRange": [ @@ -2328,90 +2440,20 @@ description: Variables in memory after executing pipe-flange-assembly.kcl 6715, 0 ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 0.1875, - 0.0 - ], - "radius": 0.1875, - "tag": null, - "to": [ - 0.1875, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.1875, - "z": 1.375 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Inches" } }, - "start": { - "from": [ - 0.1875, - 0.0 - ], - "to": [ - 0.1875, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6648, - 6715, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -1.125, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Inches" } - }, - "height": -1.125, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" } } ] diff --git a/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/ops.snap b/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/ops.snap index 928c6e57d..a45c4183e 100644 --- a/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/ops.snap @@ -95,7 +95,7 @@ description: Operations executed pipe-with-bend.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { diff --git a/rust/kcl-lib/tests/kcl_samples/pipe/ops.snap b/rust/kcl-lib/tests/kcl_samples/pipe/ops.snap index 2801911de..2a71c1f8b 100644 --- a/rust/kcl-lib/tests/kcl_samples/pipe/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/pipe/ops.snap @@ -44,7 +44,7 @@ description: Operations executed pipe.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { diff --git a/rust/kcl-lib/tests/kcl_samples/poopy-shoe/ops.snap b/rust/kcl-lib/tests/kcl_samples/poopy-shoe/ops.snap index 665d0ba51..4d7f4c766 100644 --- a/rust/kcl-lib/tests/kcl_samples/poopy-shoe/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/poopy-shoe/ops.snap @@ -125,7 +125,7 @@ description: Operations executed poopy-shoe.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { diff --git a/rust/kcl-lib/tests/kcl_samples/walkie-talkie/ops.snap b/rust/kcl-lib/tests/kcl_samples/walkie-talkie/ops.snap index fa6ed4a3b..ea52c9450 100644 --- a/rust/kcl-lib/tests/kcl_samples/walkie-talkie/ops.snap +++ b/rust/kcl-lib/tests/kcl_samples/walkie-talkie/ops.snap @@ -767,436 +767,865 @@ description: Operations executed walkie-talkie.kcl "labeledArgs": { "holeSketch": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, @@ -3134,7 +3563,7 @@ description: Operations executed walkie-talkie.kcl 7 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { diff --git a/rust/kcl-lib/tests/linear_pattern3d_a_pattern/ops.snap b/rust/kcl-lib/tests/linear_pattern3d_a_pattern/ops.snap index c59668c7c..d41de8596 100644 --- a/rust/kcl-lib/tests/linear_pattern3d_a_pattern/ops.snap +++ b/rust/kcl-lib/tests/linear_pattern3d_a_pattern/ops.snap @@ -288,28 +288,49 @@ description: Operations executed linear_pattern3d_a_pattern.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Solids", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } } ] }, diff --git a/rust/kcl-lib/tests/linear_pattern3d_a_pattern/program_memory.snap b/rust/kcl-lib/tests/linear_pattern3d_a_pattern/program_memory.snap index 134ac39ec..31f4bac54 100644 --- a/rust/kcl-lib/tests/linear_pattern3d_a_pattern/program_memory.snap +++ b/rust/kcl-lib/tests/linear_pattern3d_a_pattern/program_memory.snap @@ -218,11827 +218,11995 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl } }, "pattn1": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] }, "pattn2": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { + "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 41, - 66, + 72, + 90, 0 - ] + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + } + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" } } ] diff --git a/rust/kcl-lib/tests/poop_chute/ops.snap b/rust/kcl-lib/tests/poop_chute/ops.snap index 01dd29e7b..1177e8849 100644 --- a/rust/kcl-lib/tests/poop_chute/ops.snap +++ b/rust/kcl-lib/tests/poop_chute/ops.snap @@ -125,7 +125,7 @@ description: Operations executed poop_chute.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { diff --git a/rust/kcl-lib/tests/revolve_about_edge/ops.snap b/rust/kcl-lib/tests/revolve_about_edge/ops.snap index a54e3c3d4..82880886c 100644 --- a/rust/kcl-lib/tests/revolve_about_edge/ops.snap +++ b/rust/kcl-lib/tests/revolve_about_edge/ops.snap @@ -81,7 +81,7 @@ description: Operations executed revolve_about_edge.kcl 0 ] }, - "sketchSet": { + "sketches": { "value": { "type": "Sketch", "value": { diff --git a/rust/kcl-lib/tests/ssi_pattern/ops.snap b/rust/kcl-lib/tests/ssi_pattern/ops.snap index 8e0b93216..24bb8c83f 100644 --- a/rust/kcl-lib/tests/ssi_pattern/ops.snap +++ b/rust/kcl-lib/tests/ssi_pattern/ops.snap @@ -139,97 +139,187 @@ description: Operations executed ssi_pattern.kcl "type": "StdLibCall", "unlabeledArg": { "value": { - "type": "Sketches", + "type": "Array", "value": [ { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } }, { - "artifactId": "[uuid]" + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } } ] }, diff --git a/rust/kcl-lib/tests/ssi_pattern/program_memory.snap b/rust/kcl-lib/tests/ssi_pattern/program_memory.snap index 3fa93583c..5e5e5f73e 100644 --- a/rust/kcl-lib/tests/ssi_pattern/program_memory.snap +++ b/rust/kcl-lib/tests/ssi_pattern/program_memory.snap @@ -520,258 +520,137 @@ description: Variables in memory after executing ssi_pattern.kcl } }, "sketch002": { - "type": "Solids", + "type": "HomArray", "value": [ { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -779,398 +658,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -1178,398 +1060,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -1577,398 +1462,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -1976,398 +1864,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -2375,398 +2266,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -2774,398 +2668,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -3173,398 +3070,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -3572,398 +3472,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -3971,398 +3874,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -4370,398 +4276,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -4769,398 +4678,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -5168,398 +5080,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -5567,398 +5482,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -5966,398 +5884,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -6365,398 +6286,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -6764,398 +6688,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -7163,398 +7090,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -7562,398 +7492,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -7961,398 +7894,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -8360,398 +8296,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -8759,398 +8698,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -9158,398 +9100,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -9557,398 +9502,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -9956,398 +9904,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -10355,398 +10306,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -10754,398 +10708,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -11153,398 +11110,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -11552,398 +11512,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -11951,398 +11914,401 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } }, { "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "value": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] - }, - "ccw": true, - "center": [ - -2.08, - 47.7 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 ], - "from": [ - -0.68, - 47.7 - ], - "radius": 1.4, "tag": null, - "to": [ - -0.68, - 47.7 - ], - "type": "Circle", - "units": { - "type": "Mm" - } + "type": "extrudeArc" } ], - "on": { - "type": "face", + "sketch": { + "type": "Sketch", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + }, + "ccw": true, + "center": [ + -2.08, + 47.7 + ], + "from": [ + -0.68, + 47.7 + ], + "radius": 1.4, + "tag": null, + "to": [ + -0.68, + 47.7 + ], + "type": "Circle", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "face", "id": "[uuid]", "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ], - "tag": { - "end": 270, - "start": 264, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", "id": "[uuid]", - "paths": [ + "artifactId": "[uuid]", + "value": [ { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 97, - 0 - ] - }, - "from": [ - -4.35, - -12.26 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 ], "tag": null, - "to": [ - -4.35, - -2.06 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 128, - 0 - ] - }, - "from": [ - -4.35, - -2.06 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 ], "tag": null, - "to": [ - -3.81, - -2.09 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 134, - 167, - 0 - ] - }, - "ccw": true, - "center": [ - -2.4784, - 21.8782 - ], - "from": [ - -3.81, - -2.09 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 ], "tag": null, - "to": [ - 20.4, - 14.61 - ], - "type": "TangentialArcTo", - "units": { - "type": "Mm" - } + "type": "extrudeArc" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 173, - 195, - 0 - ] - }, - "from": [ - 20.4, - 14.61 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 ], "tag": null, - "to": [ - 20.4, - -12.15 - ], - "type": "ToPoint", - "units": { - "type": "Mm" - } + "type": "extrudePlane" }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 201, - 271, - 0 - ] - }, - "from": [ - 20.4, - -12.15 + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 ], "tag": { "end": 270, @@ -12350,146 +12316,270 @@ description: Variables in memory after executing ssi_pattern.kcl "type": "TagDeclarator", "value": "seg01" }, - "to": [ - -4.35, - -12.26 - ], - "type": "ToPoint", + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77, + 97, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -2.06 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 128, + 0 + ] + }, + "from": [ + -4.35, + -2.06 + ], + "tag": null, + "to": [ + -3.81, + -2.09 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 134, + 167, + 0 + ] + }, + "ccw": true, + "center": [ + -2.4784, + 21.8782 + ], + "from": [ + -3.81, + -2.09 + ], + "tag": null, + "to": [ + 20.4, + 14.61 + ], + "type": "TangentialArcTo", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 173, + 195, + 0 + ] + }, + "from": [ + 20.4, + 14.61 + ], + "tag": null, + "to": [ + 20.4, + -12.15 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 201, + 271, + 0 + ] + }, + "from": [ + 20.4, + -12.15 + ], + "tag": { + "end": 270, + "start": 264, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 277, + 284, + 0 + ] + }, + "from": [ + -4.35, + -12.26 + ], + "tag": null, + "to": [ + -4.35, + -12.26 + ], + "type": "ToPoint", + "units": { + "type": "Mm" + } + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, "units": { "type": "Mm" } }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 277, - 284, - 0 - ] - }, + "start": { "from": [ -4.35, -12.26 ], - "tag": null, "to": [ -4.35, -12.26 ], - "type": "ToPoint", "units": { "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 71, + 0 + ] } - } - ], - "on": { - "type": "plane", - "id": "[uuid]", + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01" + } + }, "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, + "originalId": "[uuid]", "units": { "type": "Mm" } }, - "start": { - "from": [ - -4.35, - -12.26 - ], - "to": [ - -4.35, - -12.26 - ], - "units": { - "type": "Mm" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 71, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01" - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "height": 50.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" } }, - "units": { - "type": "Mm" - } - }, - "start": { - "from": [ - -0.68, - 47.7 - ], - "to": [ - -0.68, - 47.7 - ], - "units": { - "type": "Mm" + "start": { + "from": [ + -0.68, + 47.7 + ], + "to": [ + -0.68, + 47.7 + ], + "units": { + "type": "Mm" + }, + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 382, + 426, + 0 + ] + } }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 382, - 426, - 0 - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" } }, - "artifactId": "[uuid]", - "originalId": "[uuid]", + "height": -40.0, + "startCapId": null, + "endCapId": null, "units": { "type": "Mm" } - }, - "height": -40.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" } } ]