diff --git a/docs/kcl/angleToMatchLengthX.md b/docs/kcl/angleToMatchLengthX.md index 273f71978..091d6d423 100644 --- a/docs/kcl/angleToMatchLengthX.md +++ b/docs/kcl/angleToMatchLengthX.md @@ -36,8 +36,6 @@ const extrusion = extrude(5, sketch001) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -73,8 +71,6 @@ const extrusion = extrude(5, sketch001) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -101,10 +97,6 @@ const extrusion = extrude(5, sketch001) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -179,24 +171,6 @@ const extrusion = extrude(5, sketch001) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/angleToMatchLengthY.md b/docs/kcl/angleToMatchLengthY.md index f2dfe86d2..034ddc86c 100644 --- a/docs/kcl/angleToMatchLengthY.md +++ b/docs/kcl/angleToMatchLengthY.md @@ -37,8 +37,6 @@ const extrusion = extrude(5, sketch001) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -74,8 +72,6 @@ const extrusion = extrude(5, sketch001) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -102,10 +98,6 @@ const extrusion = extrude(5, sketch001) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -180,24 +172,6 @@ const extrusion = extrude(5, sketch001) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/angledLine.md b/docs/kcl/angledLine.md index 1afe04c69..d57746418 100644 --- a/docs/kcl/angledLine.md +++ b/docs/kcl/angledLine.md @@ -43,8 +43,6 @@ const example = extrude(10, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -80,8 +78,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -108,10 +104,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -186,24 +178,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -213,8 +187,6 @@ const example = extrude(10, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -250,8 +222,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -278,10 +248,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -356,24 +322,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/angledLineOfXLength.md b/docs/kcl/angledLineOfXLength.md index f362f356b..8bbcacbe6 100644 --- a/docs/kcl/angledLineOfXLength.md +++ b/docs/kcl/angledLineOfXLength.md @@ -42,8 +42,6 @@ const extrusion = extrude(10, sketch001) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -79,8 +77,6 @@ const extrusion = extrude(10, sketch001) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -107,10 +103,6 @@ const extrusion = extrude(10, sketch001) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -185,24 +177,6 @@ const extrusion = extrude(10, sketch001) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -212,8 +186,6 @@ const extrusion = extrude(10, sketch001) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -249,8 +221,6 @@ const extrusion = extrude(10, sketch001) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -277,10 +247,6 @@ const extrusion = extrude(10, sketch001) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -355,24 +321,6 @@ const extrusion = extrude(10, sketch001) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/angledLineOfYLength.md b/docs/kcl/angledLineOfYLength.md index bb27c1a8d..bec69af26 100644 --- a/docs/kcl/angledLineOfYLength.md +++ b/docs/kcl/angledLineOfYLength.md @@ -44,8 +44,6 @@ const example = extrude(10, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -81,8 +79,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -109,10 +105,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -187,24 +179,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -214,8 +188,6 @@ const example = extrude(10, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -251,8 +223,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -279,10 +249,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -357,24 +323,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/angledLineThatIntersects.md b/docs/kcl/angledLineThatIntersects.md index 297e253c3..fe06dbfc5 100644 --- a/docs/kcl/angledLineThatIntersects.md +++ b/docs/kcl/angledLineThatIntersects.md @@ -48,8 +48,6 @@ const example = extrude(10, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -85,8 +83,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -113,10 +109,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -191,24 +183,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -218,8 +192,6 @@ const example = extrude(10, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -255,8 +227,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -283,10 +253,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -361,24 +327,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/angledLineToX.md b/docs/kcl/angledLineToX.md index 33a7615b0..3fb224341 100644 --- a/docs/kcl/angledLineToX.md +++ b/docs/kcl/angledLineToX.md @@ -41,8 +41,6 @@ const example = extrude(10, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -78,8 +76,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -106,10 +102,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -184,24 +176,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -211,8 +185,6 @@ const example = extrude(10, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -248,8 +220,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -276,10 +246,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -354,24 +320,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/angledLineToY.md b/docs/kcl/angledLineToY.md index f1477543f..ed6323353 100644 --- a/docs/kcl/angledLineToY.md +++ b/docs/kcl/angledLineToY.md @@ -41,8 +41,6 @@ const example = extrude(10, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -78,8 +76,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -106,10 +102,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -184,24 +176,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -211,8 +185,6 @@ const example = extrude(10, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -248,8 +220,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -276,10 +246,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -354,24 +320,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/arc.md b/docs/kcl/arc.md index 8797cdf13..4809ce165 100644 --- a/docs/kcl/arc.md +++ b/docs/kcl/arc.md @@ -52,8 +52,6 @@ const exampleSketch = startSketchOn('XZ') * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -89,8 +87,6 @@ const exampleSketch = startSketchOn('XZ') }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -117,10 +113,6 @@ const exampleSketch = startSketchOn('XZ') z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -195,24 +187,6 @@ const exampleSketch = startSketchOn('XZ') to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -222,8 +196,6 @@ const exampleSketch = startSketchOn('XZ') `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -259,8 +231,6 @@ const exampleSketch = startSketchOn('XZ') }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -287,10 +257,6 @@ const exampleSketch = startSketchOn('XZ') z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -365,24 +331,6 @@ const exampleSketch = startSketchOn('XZ') to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/bezierCurve.md b/docs/kcl/bezierCurve.md index 134662f48..6a08a9c58 100644 --- a/docs/kcl/bezierCurve.md +++ b/docs/kcl/bezierCurve.md @@ -47,8 +47,6 @@ const example = extrude(10, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -84,8 +82,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -112,10 +108,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -190,24 +182,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -217,8 +191,6 @@ const example = extrude(10, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -254,8 +226,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -282,10 +252,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -360,24 +326,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/chamfer.md b/docs/kcl/chamfer.md index 5865ee32c..97453bede 100644 --- a/docs/kcl/chamfer.md +++ b/docs/kcl/chamfer.md @@ -62,10 +62,6 @@ string], height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -141,10 +137,6 @@ string], id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -156,10 +148,6 @@ string], id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", @@ -196,10 +184,6 @@ string], height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -275,10 +259,6 @@ string], id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -290,10 +270,6 @@ string], id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", diff --git a/docs/kcl/circle.md b/docs/kcl/circle.md index 6a4bfefd6..e18526fbb 100644 --- a/docs/kcl/circle.md +++ b/docs/kcl/circle.md @@ -76,8 +76,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -105,8 +103,6 @@ const example = extrude(5, exampleSketch) }, } | { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -142,8 +138,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -170,10 +164,6 @@ const example = extrude(5, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -248,24 +238,6 @@ const example = extrude(5, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` @@ -274,8 +246,6 @@ const example = extrude(5, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -311,8 +281,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -339,10 +307,6 @@ const example = extrude(5, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -417,24 +381,6 @@ const example = extrude(5, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/close.md b/docs/kcl/close.md index 7f0946270..0064b354f 100644 --- a/docs/kcl/close.md +++ b/docs/kcl/close.md @@ -42,8 +42,6 @@ const example = extrude(10, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -79,8 +77,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -107,10 +103,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -185,24 +177,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -212,8 +186,6 @@ const example = extrude(10, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -249,8 +221,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -277,10 +247,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -355,24 +321,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/extrude.md b/docs/kcl/extrude.md index e0c610f7f..17a59c847 100644 --- a/docs/kcl/extrude.md +++ b/docs/kcl/extrude.md @@ -67,8 +67,6 @@ const example = extrude(10, exampleSketch) * `sketch_group_set`: `SketchGroupSet` - A sketch group or a group of sketch groups. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -104,8 +102,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -132,10 +128,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -211,24 +203,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } | { type: "sketchGroups", @@ -246,10 +220,6 @@ const example = extrude(10, exampleSketch) height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -326,10 +296,6 @@ const example = extrude(10, exampleSketch) id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -341,10 +307,6 @@ const example = extrude(10, exampleSketch) id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", diff --git a/docs/kcl/fillet.md b/docs/kcl/fillet.md index 9ed729bec..408b39c0f 100644 --- a/docs/kcl/fillet.md +++ b/docs/kcl/fillet.md @@ -62,10 +62,6 @@ string], height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -141,10 +137,6 @@ string], id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -156,10 +148,6 @@ string], id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", @@ -196,10 +184,6 @@ string], height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -275,10 +259,6 @@ string], id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -290,10 +270,6 @@ string], id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", diff --git a/docs/kcl/getEdge.md b/docs/kcl/getEdge.md index 90ee18b78..a9ddde0fe 100644 --- a/docs/kcl/getEdge.md +++ b/docs/kcl/getEdge.md @@ -49,10 +49,6 @@ const revolution = startSketchOn(box, "revolveAxis") height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -128,10 +124,6 @@ const revolution = startSketchOn(box, "revolveAxis") id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -143,10 +135,6 @@ const revolution = startSketchOn(box, "revolveAxis") id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", diff --git a/docs/kcl/getNextAdjacentEdge.md b/docs/kcl/getNextAdjacentEdge.md index 02a68f90d..bb3cc5038 100644 --- a/docs/kcl/getNextAdjacentEdge.md +++ b/docs/kcl/getNextAdjacentEdge.md @@ -47,10 +47,6 @@ const example = extrude(5, exampleSketch) height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -126,10 +122,6 @@ const example = extrude(5, exampleSketch) id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -141,10 +133,6 @@ const example = extrude(5, exampleSketch) id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", diff --git a/docs/kcl/getOppositeEdge.md b/docs/kcl/getOppositeEdge.md index 45cc61d13..00e7d02ba 100644 --- a/docs/kcl/getOppositeEdge.md +++ b/docs/kcl/getOppositeEdge.md @@ -45,10 +45,6 @@ const example = extrude(5, exampleSketch) height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -124,10 +120,6 @@ const example = extrude(5, exampleSketch) id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -139,10 +131,6 @@ const example = extrude(5, exampleSketch) id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", diff --git a/docs/kcl/getPreviousAdjacentEdge.md b/docs/kcl/getPreviousAdjacentEdge.md index a11ebf780..b841d93cd 100644 --- a/docs/kcl/getPreviousAdjacentEdge.md +++ b/docs/kcl/getPreviousAdjacentEdge.md @@ -47,10 +47,6 @@ const example = extrude(5, exampleSketch) height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -126,10 +122,6 @@ const example = extrude(5, exampleSketch) id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -141,10 +133,6 @@ const example = extrude(5, exampleSketch) id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", diff --git a/docs/kcl/helix.md b/docs/kcl/helix.md index da8af0fb7..d2627b809 100644 --- a/docs/kcl/helix.md +++ b/docs/kcl/helix.md @@ -52,10 +52,6 @@ const part001 = startSketchOn('XY') height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -131,10 +127,6 @@ const part001 = startSketchOn('XY') id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -146,10 +138,6 @@ const part001 = startSketchOn('XY') id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", @@ -186,10 +174,6 @@ const part001 = startSketchOn('XY') height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -265,10 +249,6 @@ const part001 = startSketchOn('XY') id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -280,10 +260,6 @@ const part001 = startSketchOn('XY') id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", diff --git a/docs/kcl/hole.md b/docs/kcl/hole.md index 56ae8e05c..4989bc0c1 100644 --- a/docs/kcl/hole.md +++ b/docs/kcl/hole.md @@ -53,8 +53,6 @@ const example = extrude(1, exampleSketch) * `hole_sketch_group`: `SketchGroupSet` - A sketch group or a group of sketch groups. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -90,8 +88,6 @@ const example = extrude(1, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -118,10 +114,6 @@ const example = extrude(1, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -197,24 +189,6 @@ const example = extrude(1, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } | { type: "sketchGroups", @@ -223,8 +197,6 @@ const example = extrude(1, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -260,8 +232,6 @@ const example = extrude(1, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -288,10 +258,6 @@ const example = extrude(1, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -366,24 +332,6 @@ const example = extrude(1, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` @@ -392,8 +340,6 @@ const example = extrude(1, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -429,8 +375,6 @@ const example = extrude(1, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -457,10 +401,6 @@ const example = extrude(1, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -535,24 +475,6 @@ const example = extrude(1, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/lastSegX.md b/docs/kcl/lastSegX.md index 402354ca7..8571755a0 100644 --- a/docs/kcl/lastSegX.md +++ b/docs/kcl/lastSegX.md @@ -33,8 +33,6 @@ const example = extrude(5, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -70,8 +68,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -98,10 +94,6 @@ const example = extrude(5, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -176,24 +168,6 @@ const example = extrude(5, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/lastSegY.md b/docs/kcl/lastSegY.md index 7a35c3dca..94a16975d 100644 --- a/docs/kcl/lastSegY.md +++ b/docs/kcl/lastSegY.md @@ -33,8 +33,6 @@ const example = extrude(5, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -70,8 +68,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -98,10 +94,6 @@ const example = extrude(5, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -176,24 +168,6 @@ const example = extrude(5, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/line.md b/docs/kcl/line.md index acac43601..748ed4501 100644 --- a/docs/kcl/line.md +++ b/docs/kcl/line.md @@ -46,8 +46,6 @@ const example = extrude(5, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -83,8 +81,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -111,10 +107,6 @@ const example = extrude(5, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -189,24 +181,6 @@ const example = extrude(5, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -216,8 +190,6 @@ const example = extrude(5, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -253,8 +225,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -281,10 +251,6 @@ const example = extrude(5, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -359,24 +325,6 @@ const example = extrude(5, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/lineTo.md b/docs/kcl/lineTo.md index a99e70ebd..6aa11ff82 100644 --- a/docs/kcl/lineTo.md +++ b/docs/kcl/lineTo.md @@ -33,8 +33,6 @@ const example = extrude(5, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -70,8 +68,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -98,10 +94,6 @@ const example = extrude(5, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -176,24 +168,6 @@ const example = extrude(5, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -203,8 +177,6 @@ const example = extrude(5, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -240,8 +212,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -268,10 +238,6 @@ const example = extrude(5, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -346,24 +312,6 @@ const example = extrude(5, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/patternCircular2d.md b/docs/kcl/patternCircular2d.md index 6586a619a..2ecbd4620 100644 --- a/docs/kcl/patternCircular2d.md +++ b/docs/kcl/patternCircular2d.md @@ -51,8 +51,6 @@ const example = extrude(1, exampleSketch) * `sketch_group_set`: `SketchGroupSet` - A sketch group or a group of sketch groups. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -88,8 +86,6 @@ const example = extrude(1, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -116,10 +112,6 @@ const example = extrude(1, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -195,24 +187,6 @@ const example = extrude(1, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } | { type: "sketchGroups", diff --git a/docs/kcl/patternCircular3d.md b/docs/kcl/patternCircular3d.md index e6ab885ec..03cb44208 100644 --- a/docs/kcl/patternCircular3d.md +++ b/docs/kcl/patternCircular3d.md @@ -56,10 +56,6 @@ const example = extrude(-5, exampleSketch) height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -136,10 +132,6 @@ const example = extrude(-5, exampleSketch) id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -151,10 +143,6 @@ const example = extrude(-5, exampleSketch) id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", diff --git a/docs/kcl/patternLinear2d.md b/docs/kcl/patternLinear2d.md index 98498b581..01b95af5b 100644 --- a/docs/kcl/patternLinear2d.md +++ b/docs/kcl/patternLinear2d.md @@ -44,8 +44,6 @@ const example = extrude(1, exampleSketch) * `sketch_group_set`: `SketchGroupSet` - A sketch group or a group of sketch groups. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -81,8 +79,6 @@ const example = extrude(1, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -109,10 +105,6 @@ const example = extrude(1, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -188,24 +180,6 @@ const example = extrude(1, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } | { type: "sketchGroups", diff --git a/docs/kcl/patternLinear3d.md b/docs/kcl/patternLinear3d.md index 9482b54ac..77c248cef 100644 --- a/docs/kcl/patternLinear3d.md +++ b/docs/kcl/patternLinear3d.md @@ -54,10 +54,6 @@ const example = extrude(1, exampleSketch) height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -134,10 +130,6 @@ const example = extrude(1, exampleSketch) id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -149,10 +141,6 @@ const example = extrude(1, exampleSketch) id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", diff --git a/docs/kcl/profileStart.md b/docs/kcl/profileStart.md index 268e126b3..6b26a7f32 100644 --- a/docs/kcl/profileStart.md +++ b/docs/kcl/profileStart.md @@ -34,8 +34,6 @@ const sketch001 = startSketchOn('XY') * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -71,8 +69,6 @@ const sketch001 = startSketchOn('XY') }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -99,10 +95,6 @@ const sketch001 = startSketchOn('XY') z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -177,24 +169,6 @@ const sketch001 = startSketchOn('XY') to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/profileStartX.md b/docs/kcl/profileStartX.md index d804931f2..baffa6213 100644 --- a/docs/kcl/profileStartX.md +++ b/docs/kcl/profileStartX.md @@ -29,8 +29,6 @@ const sketch001 = startSketchOn('XY') * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -66,8 +64,6 @@ const sketch001 = startSketchOn('XY') }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -94,10 +90,6 @@ const sketch001 = startSketchOn('XY') z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -172,24 +164,6 @@ const sketch001 = startSketchOn('XY') to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/profileStartY.md b/docs/kcl/profileStartY.md index b2d30da58..cecc6ea1a 100644 --- a/docs/kcl/profileStartY.md +++ b/docs/kcl/profileStartY.md @@ -28,8 +28,6 @@ const sketch001 = startSketchOn('XY') * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -65,8 +63,6 @@ const sketch001 = startSketchOn('XY') }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -93,10 +89,6 @@ const sketch001 = startSketchOn('XY') z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -171,24 +163,6 @@ const sketch001 = startSketchOn('XY') to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/revolve.md b/docs/kcl/revolve.md index 5109e6337..d7d01fc9b 100644 --- a/docs/kcl/revolve.md +++ b/docs/kcl/revolve.md @@ -162,8 +162,6 @@ string, * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -199,8 +197,6 @@ string, }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -227,10 +223,6 @@ string, z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -305,24 +297,6 @@ string, to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` @@ -337,10 +311,6 @@ string, height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -416,10 +386,6 @@ string, id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -431,10 +397,6 @@ string, id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", diff --git a/docs/kcl/segAng.md b/docs/kcl/segAng.md index 8fb2553ca..9eaf59a97 100644 --- a/docs/kcl/segAng.md +++ b/docs/kcl/segAng.md @@ -36,8 +36,6 @@ const example = extrude(4, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -73,8 +71,6 @@ const example = extrude(4, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -101,10 +97,6 @@ const example = extrude(4, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -179,24 +171,6 @@ const example = extrude(4, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/segEndX.md b/docs/kcl/segEndX.md index 3e8d1adad..3da9c13a6 100644 --- a/docs/kcl/segEndX.md +++ b/docs/kcl/segEndX.md @@ -34,8 +34,6 @@ const example = extrude(5, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -71,8 +69,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -99,10 +95,6 @@ const example = extrude(5, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -177,24 +169,6 @@ const example = extrude(5, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/segEndY.md b/docs/kcl/segEndY.md index d2978bd0c..a5096b3b3 100644 --- a/docs/kcl/segEndY.md +++ b/docs/kcl/segEndY.md @@ -35,8 +35,6 @@ const example = extrude(5, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -72,8 +70,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -100,10 +96,6 @@ const example = extrude(5, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -178,24 +170,6 @@ const example = extrude(5, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/segLen.md b/docs/kcl/segLen.md index 6a0cdc373..07b1c0a8b 100644 --- a/docs/kcl/segLen.md +++ b/docs/kcl/segLen.md @@ -36,8 +36,6 @@ const example = extrude(5, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -73,8 +71,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -101,10 +97,6 @@ const example = extrude(5, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -179,24 +171,6 @@ const example = extrude(5, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/shell.md b/docs/kcl/shell.md index a45eda927..38cc715e8 100644 --- a/docs/kcl/shell.md +++ b/docs/kcl/shell.md @@ -50,10 +50,6 @@ string], height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -129,10 +125,6 @@ string], id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -144,10 +136,6 @@ string], id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", @@ -184,10 +172,6 @@ string], height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -263,10 +247,6 @@ string], id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -278,10 +258,6 @@ string], id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", diff --git a/docs/kcl/startProfileAt.md b/docs/kcl/startProfileAt.md index 758575e79..e0db8fdf4 100644 --- a/docs/kcl/startProfileAt.md +++ b/docs/kcl/startProfileAt.md @@ -90,8 +90,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -126,8 +124,6 @@ const example = extrude(5, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -163,8 +159,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -191,10 +185,6 @@ const example = extrude(5, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -269,24 +259,6 @@ const example = extrude(5, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/startSketchAt.md b/docs/kcl/startSketchAt.md index afec5e4ca..e0c1a2798 100644 --- a/docs/kcl/startSketchAt.md +++ b/docs/kcl/startSketchAt.md @@ -59,8 +59,6 @@ const example = extrude(5, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -96,8 +94,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -124,10 +120,6 @@ const example = extrude(5, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -202,24 +194,6 @@ const example = extrude(5, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/startSketchOn.md b/docs/kcl/startSketchOn.md index ce2b553c7..9127b0ee0 100644 --- a/docs/kcl/startSketchOn.md +++ b/docs/kcl/startSketchOn.md @@ -167,10 +167,6 @@ const a1 = startSketchOn({ height: number, // The id of the extrude group. id: uuid, - // The position of the extrude group. - position: [number, number, number], - // The rotation of the extrude group. - rotation: [number, number, number, number], // The sketch group paths. sketchGroupValues: [{ // The from point. @@ -246,10 +242,6 @@ const a1 = startSketchOn({ id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudePlane", @@ -261,10 +253,6 @@ const a1 = startSketchOn({ id: uuid, // The name. name: string, - // The position. - position: [number, number, number], - // The rotation. - rotation: [number, number, number, number], // The source range. sourceRange: [number, number], type: "extrudeArc", @@ -331,8 +319,6 @@ string }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. diff --git a/docs/kcl/std.json b/docs/kcl/std.json index d1971cb4a..0de588ab3 100644 --- a/docs/kcl/std.json +++ b/docs/kcl/std.json @@ -98,13 +98,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -131,12 +126,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -312,7 +301,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -345,11 +333,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -443,26 +426,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -981,75 +944,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -1104,13 +998,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -1137,12 +1026,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -1318,7 +1201,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -1351,11 +1233,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -1449,26 +1326,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -1987,75 +1844,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -2133,13 +1921,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -2166,12 +1949,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -2347,7 +2124,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -2380,11 +2156,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -2478,26 +2249,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -3016,75 +2767,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -3110,13 +2792,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -3143,12 +2820,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -3324,7 +2995,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -3357,11 +3027,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -3455,26 +3120,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -3993,75 +3638,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -4129,13 +3705,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -4162,12 +3733,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -4343,7 +3908,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -4376,11 +3940,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -4474,26 +4033,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -5012,75 +4551,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -5106,13 +4576,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -5139,12 +4604,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -5320,7 +4779,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -5353,11 +4811,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -5451,26 +4904,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -5989,75 +5422,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -6125,13 +5489,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -6158,12 +5517,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -6339,7 +5692,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -6372,11 +5724,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -6470,26 +5817,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -7008,75 +6335,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -7102,13 +6360,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -7135,12 +6388,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -7316,7 +6563,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -7349,11 +6595,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -7447,26 +6688,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -7985,75 +7206,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -8111,13 +7263,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -8144,12 +7291,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -8325,7 +7466,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -8358,11 +7498,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -8456,26 +7591,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -8994,75 +8109,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -9088,13 +8134,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -9121,12 +8162,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -9302,7 +8337,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -9335,11 +8369,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -9433,26 +8462,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -9971,75 +8980,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -10092,13 +9032,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -10125,12 +9060,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -10306,7 +9235,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -10339,11 +9267,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -10437,26 +9360,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -10975,75 +9878,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -11069,13 +9903,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -11102,12 +9931,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -11283,7 +10106,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -11316,11 +10138,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -11414,26 +10231,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -11952,75 +10749,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -12073,13 +10801,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -12106,12 +10829,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -12287,7 +11004,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -12320,11 +11036,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -12418,26 +11129,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -12956,75 +11647,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -13050,13 +11672,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -13083,12 +11700,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -13264,7 +11875,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -13297,11 +11907,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -13395,26 +12000,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -13933,75 +12518,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -14101,13 +12617,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -14134,12 +12645,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -14315,7 +12820,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -14348,11 +12852,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -14446,26 +12945,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -14984,75 +13463,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -15078,13 +13488,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -15111,12 +13516,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -15292,7 +13691,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -15325,11 +13723,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -15423,26 +13816,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -15961,75 +14334,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -16169,13 +14473,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -16202,12 +14501,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -16383,7 +14676,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -16416,11 +14708,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -16514,26 +14801,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -17052,75 +15319,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -17146,13 +15344,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -17179,12 +15372,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -17360,7 +15547,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -17393,11 +15579,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -17491,26 +15672,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -18029,75 +16190,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -18196,8 +16288,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -18245,26 +16335,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -18741,8 +16811,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -18761,26 +16829,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -18807,8 +16855,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -18827,26 +16873,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -18953,8 +16979,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -19002,26 +17026,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -19498,8 +17502,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -19518,26 +17520,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -19564,8 +17546,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -19584,26 +17564,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -19919,7 +17879,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -19952,11 +17911,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -20057,13 +18011,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -20090,12 +18039,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -20271,7 +18214,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -20304,11 +18246,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -20402,26 +18339,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -20940,75 +18857,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } } @@ -21027,13 +18875,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -21060,12 +18903,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -21241,7 +19078,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -21274,11 +19110,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -21372,26 +19203,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -21910,75 +19721,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -22007,13 +19749,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -22040,12 +19777,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -22221,7 +19952,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -22254,11 +19984,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -22352,26 +20077,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -22890,75 +20595,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -22984,13 +20620,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -23017,12 +20648,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -23198,7 +20823,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -23231,11 +20855,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -23329,26 +20948,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -23867,75 +21466,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -24032,14 +21562,9 @@ "__meta", "id", "on", - "position", - "rotation", "start", "type", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -24066,12 +21591,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -24247,7 +21766,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -24280,11 +21798,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -24378,26 +21891,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -24922,75 +22415,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -25006,13 +22430,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -25039,12 +22458,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -25220,7 +22633,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -25253,11 +22665,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -25351,26 +22758,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -25889,75 +23276,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -25991,8 +23309,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "type", "value", @@ -26041,26 +23357,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -26543,8 +23839,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -26563,26 +23857,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -26609,8 +23883,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -26629,26 +23901,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -26754,8 +24006,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -26803,26 +24053,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -27299,8 +24529,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -27319,26 +24547,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -27365,8 +24573,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -27385,26 +24591,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -27575,8 +24761,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -27624,26 +24808,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -28120,8 +25284,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -28140,26 +25302,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -28186,8 +25328,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -28206,26 +25346,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -28332,8 +25452,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -28381,26 +25499,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -28877,8 +25975,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -28897,26 +25993,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -28943,8 +26019,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -28963,26 +26037,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -29141,8 +26195,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -29190,26 +26242,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -29686,8 +26718,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -29706,26 +26736,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -29752,8 +26762,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -29772,26 +26780,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -29927,8 +26915,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -29976,26 +26962,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -30472,8 +27438,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -30492,26 +27456,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -30538,8 +27482,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -30558,26 +27500,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -30713,8 +27635,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -30762,26 +27682,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -31258,8 +28158,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -31278,26 +28176,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -31324,8 +28202,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -31344,26 +28220,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -31499,8 +28355,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -31548,26 +28402,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -32044,8 +28878,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -32064,26 +28896,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -32110,8 +28922,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -32130,26 +28940,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -32313,8 +29103,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -32362,26 +29150,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -32858,8 +29626,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -32878,26 +29644,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -32924,8 +29670,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -32944,26 +29688,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -33070,8 +29794,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -33119,26 +29841,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -33615,8 +30317,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -33635,26 +30335,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -33681,8 +30361,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -33701,26 +30379,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -33841,14 +30499,9 @@ "__meta", "id", "on", - "position", - "rotation", "start", "type", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -33875,12 +30528,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -34056,7 +30703,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -34089,11 +30735,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -34187,26 +30828,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -34731,75 +31352,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -34815,13 +31367,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -34848,12 +31395,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -35029,7 +31570,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -35062,11 +31602,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -35160,26 +31695,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -35698,75 +32213,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -35796,13 +32242,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -35829,12 +32270,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -36010,7 +32445,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -36043,11 +32477,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -36141,26 +32570,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -36679,75 +33088,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -36764,13 +33104,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -36797,12 +33132,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -36978,7 +33307,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -37011,11 +33339,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -37109,26 +33432,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -37647,75 +33950,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -38401,13 +34635,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -38434,12 +34663,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -38615,7 +34838,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -38648,11 +34870,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -38746,26 +34963,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -39284,75 +35481,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -39390,13 +35518,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -39423,12 +35546,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -39604,7 +35721,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -39637,11 +35753,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -39735,26 +35846,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -40273,75 +36364,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -40519,13 +36541,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -40552,12 +36569,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -40733,7 +36744,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -40766,11 +36776,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -40864,26 +36869,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -41402,75 +37387,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -41496,13 +37412,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -41529,12 +37440,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -41710,7 +37615,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -41743,11 +37647,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -41841,26 +37740,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -42379,75 +38258,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -42490,13 +38300,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -42523,12 +38328,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -42704,7 +38503,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -42737,11 +38535,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -42835,26 +38628,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -43373,75 +39146,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -43467,13 +39171,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -43500,12 +39199,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -43681,7 +39374,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -43714,11 +39406,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -43812,26 +39499,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -44350,75 +40017,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -44704,14 +40302,9 @@ "__meta", "id", "on", - "position", - "rotation", "start", "type", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -44738,12 +40331,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -44919,7 +40506,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -44952,11 +40538,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -45050,26 +40631,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -45594,75 +41155,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -45678,13 +41170,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -45711,12 +41198,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -45892,7 +41373,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -45925,11 +41405,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -46023,26 +41498,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -46561,75 +42016,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -46662,13 +42048,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -46695,12 +42076,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -46876,7 +42251,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -46909,11 +42283,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -47007,26 +42376,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -47545,75 +42894,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } } @@ -47698,8 +42978,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "type", "value", @@ -47748,26 +43026,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -48250,8 +43508,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -48270,26 +43526,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -48316,8 +43552,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -48336,26 +43570,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -48461,8 +43675,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -48510,26 +43722,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -49006,8 +44198,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -49026,26 +44216,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -49072,8 +44242,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -49092,26 +44260,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -49234,8 +44382,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -49283,26 +44429,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -49779,8 +44905,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -49799,26 +44923,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -49845,8 +44949,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -49865,26 +44967,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -50043,14 +45125,9 @@ "__meta", "id", "on", - "position", - "rotation", "start", "type", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -50077,12 +45154,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -50258,7 +45329,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -50291,11 +45361,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -50389,26 +45454,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -50933,75 +45978,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -51017,13 +45993,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -51050,12 +46021,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -51231,7 +46196,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -51264,11 +46228,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -51362,26 +46321,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -51900,75 +46839,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -52001,13 +46871,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -52034,12 +46899,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -52215,7 +47074,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -52248,11 +47106,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -52346,26 +47199,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -52884,75 +47717,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } } @@ -53021,8 +47785,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "type", "value", @@ -53071,26 +47833,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -53573,8 +48315,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -53593,26 +48333,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -53639,8 +48359,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -53659,26 +48377,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -53784,8 +48482,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -53833,26 +48529,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -54329,8 +49005,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -54349,26 +49023,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -54395,8 +49049,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -54415,26 +49067,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -54557,8 +49189,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -54606,26 +49236,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -55102,8 +49712,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -55122,26 +49730,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -55168,8 +49756,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -55188,26 +49774,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -55391,13 +49957,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -55424,12 +49985,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -55605,7 +50160,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -55638,11 +50192,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -55736,26 +50285,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -56274,75 +50803,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -56385,13 +50845,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -56418,12 +50873,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -56599,7 +51048,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -56632,11 +51080,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -56730,26 +51173,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -57268,75 +51691,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -57374,13 +51728,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -57407,12 +51756,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -57588,7 +51931,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -57621,11 +51963,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -57719,26 +52056,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -58257,75 +52574,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -58488,13 +52736,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -58521,12 +52764,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -58702,7 +52939,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -58735,11 +52971,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -58833,26 +53064,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -59371,75 +53582,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -59456,8 +53598,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -59505,26 +53645,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -60001,8 +54121,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -60021,26 +54139,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -60067,8 +54165,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -60087,26 +54183,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -60238,13 +54314,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -60271,12 +54342,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -60452,7 +54517,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -60485,11 +54549,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -60583,26 +54642,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -61121,75 +55160,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -61235,13 +55205,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -61268,12 +55233,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -61449,7 +55408,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -61482,11 +55440,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -61580,26 +55533,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -62118,75 +56051,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -62232,13 +56096,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -62265,12 +56124,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -62446,7 +56299,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -62479,11 +56331,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -62577,26 +56424,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -63115,75 +56942,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -63229,13 +56987,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -63262,12 +57015,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -63443,7 +57190,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -63476,11 +57222,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -63574,26 +57315,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -64112,75 +57833,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -64269,8 +57921,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -64318,26 +57968,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -64814,8 +58444,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -64834,26 +58462,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -64880,8 +58488,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -64900,26 +58506,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -65026,8 +58612,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -65075,26 +58659,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -65571,8 +59135,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -65591,26 +59153,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -65637,8 +59179,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -65657,26 +59197,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -66037,7 +59557,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -66070,11 +59589,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -66190,13 +59704,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -66223,12 +59732,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -66404,7 +59907,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -66437,11 +59939,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -66535,26 +60032,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -67073,75 +60550,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -67186,13 +60594,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -67219,12 +60622,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -67400,7 +60797,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -67433,11 +60829,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -67531,26 +60922,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -68069,75 +61440,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -68330,8 +61632,6 @@ "__meta", "height", "id", - "position", - "rotation", "sketchGroupValues", "value", "xAxis", @@ -68379,26 +61679,6 @@ "type": "string", "format": "uuid" }, - "position": { - "description": "The position of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the extrude group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sketchGroupValues": { "description": "The sketch group paths.", "type": "array", @@ -68875,8 +62155,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -68895,26 +62173,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -68941,8 +62199,6 @@ "faceId", "id", "name", - "position", - "rotation", "sourceRange", "type" ], @@ -68961,26 +62217,6 @@ "description": "The name.", "type": "string" }, - "position": { - "description": "The position.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "sourceRange": { "description": "The source range.", "type": "array", @@ -69285,7 +62521,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -69318,11 +62553,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -69515,13 +62745,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -69548,12 +62773,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -69729,7 +62948,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -69762,11 +62980,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -69860,26 +63073,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -70398,75 +63591,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -70492,13 +63616,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -70525,12 +63644,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -70706,7 +63819,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -70739,11 +63851,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -70837,26 +63944,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -71375,75 +64462,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -71485,13 +64503,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -71518,12 +64531,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -71699,7 +64706,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -71732,11 +64738,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -71830,26 +64831,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -72368,75 +65349,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -72462,13 +65374,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -72495,12 +65402,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -72676,7 +65577,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -72709,11 +65609,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -72807,26 +65702,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -73345,75 +66220,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -73539,13 +66345,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -73572,12 +66373,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -73753,7 +66548,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -73786,11 +66580,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -73884,26 +66673,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -74422,75 +67191,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -74516,13 +67216,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -74549,12 +67244,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -74730,7 +67419,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -74763,11 +67451,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -74861,26 +67544,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -75399,75 +68062,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -75504,13 +68098,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -75537,12 +68126,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -75718,7 +68301,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -75751,11 +68333,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -75849,26 +68426,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -76387,75 +68944,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -76481,13 +68969,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -76514,12 +68997,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -76695,7 +69172,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -76728,11 +69204,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -76826,26 +69297,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -77364,75 +69815,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -77469,13 +69851,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -77502,12 +69879,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -77683,7 +70054,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -77716,11 +70086,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -77814,26 +70179,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -78352,75 +70697,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -78446,13 +70722,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -78479,12 +70750,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -78660,7 +70925,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -78693,11 +70957,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -78791,26 +71050,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -79329,75 +71568,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -79434,13 +71604,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -79467,12 +71632,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -79648,7 +71807,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -79681,11 +71839,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -79779,26 +71932,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -80317,75 +72450,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, @@ -80411,13 +72475,8 @@ "__meta", "id", "on", - "position", - "rotation", "start", - "value", - "xAxis", - "yAxis", - "zAxis" + "value" ], "properties": { "__meta": { @@ -80444,12 +72503,6 @@ } } }, - "entityId": { - "description": "The plane id or face id of the sketch group.", - "type": "string", - "format": "uuid", - "nullable": true - }, "id": { "description": "The id of the sketch group.", "type": "string", @@ -80625,7 +72678,6 @@ "type": "object", "required": [ "__meta", - "faceId", "id", "sketchGroupId", "type", @@ -80658,11 +72710,6 @@ } } }, - "faceId": { - "description": "the face id the sketch is on", - "type": "string", - "format": "uuid" - }, "id": { "description": "The id of the face.", "type": "string", @@ -80756,26 +72803,6 @@ } ] }, - "position": { - "description": "The position of the sketch group.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 3, - "minItems": 3 - }, - "rotation": { - "description": "The rotation of the sketch group base plane.", - "type": "array", - "items": { - "type": "number", - "format": "double" - }, - "maxItems": 4, - "minItems": 4 - }, "start": { "description": "The starting path.", "type": "object", @@ -81294,75 +73321,6 @@ } ] } - }, - "xAxis": { - "description": "The x-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "yAxis": { - "description": "The y-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } - }, - "zAxis": { - "description": "The z-axis of the sketch group base plane in the 3D space", - "type": "object", - "required": [ - "x", - "y", - "z" - ], - "properties": { - "x": { - "type": "number", - "format": "double" - }, - "y": { - "type": "number", - "format": "double" - }, - "z": { - "type": "number", - "format": "double" - } - } } } }, diff --git a/docs/kcl/tangentialArc.md b/docs/kcl/tangentialArc.md index 47e48811b..36a400efd 100644 --- a/docs/kcl/tangentialArc.md +++ b/docs/kcl/tangentialArc.md @@ -42,8 +42,6 @@ const example = extrude(10, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -79,8 +77,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -107,10 +103,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -185,24 +177,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -212,8 +186,6 @@ const example = extrude(10, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -249,8 +221,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -277,10 +247,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -355,24 +321,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/tangentialArcTo.md b/docs/kcl/tangentialArcTo.md index 2c180c405..fbcb8a425 100644 --- a/docs/kcl/tangentialArcTo.md +++ b/docs/kcl/tangentialArcTo.md @@ -33,8 +33,6 @@ const example = extrude(10, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -70,8 +68,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -98,10 +94,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -176,24 +168,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -203,8 +177,6 @@ const example = extrude(10, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -240,8 +212,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -268,10 +238,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -346,24 +312,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/xLine.md b/docs/kcl/xLine.md index fd9b931d4..2ca688697 100644 --- a/docs/kcl/xLine.md +++ b/docs/kcl/xLine.md @@ -36,8 +36,6 @@ const example = extrude(10, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -73,8 +71,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -101,10 +97,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -179,24 +171,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -206,8 +180,6 @@ const example = extrude(10, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -243,8 +215,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -271,10 +241,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -349,24 +315,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/xLineTo.md b/docs/kcl/xLineTo.md index aaae28d2b..9a1762d64 100644 --- a/docs/kcl/xLineTo.md +++ b/docs/kcl/xLineTo.md @@ -36,8 +36,6 @@ const example = extrude(10, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -73,8 +71,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -101,10 +97,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -179,24 +171,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -206,8 +180,6 @@ const example = extrude(10, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -243,8 +215,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -271,10 +241,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -349,24 +315,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/yLine.md b/docs/kcl/yLine.md index 773d0b96c..ec5e9652c 100644 --- a/docs/kcl/yLine.md +++ b/docs/kcl/yLine.md @@ -34,8 +34,6 @@ const example = extrude(10, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -71,8 +69,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -99,10 +95,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -177,24 +169,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -204,8 +178,6 @@ const example = extrude(10, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -241,8 +213,6 @@ const example = extrude(10, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -269,10 +239,6 @@ const example = extrude(10, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -347,24 +313,6 @@ const example = extrude(10, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/docs/kcl/yLineTo.md b/docs/kcl/yLineTo.md index 8ee29b8fc..4b16bb060 100644 --- a/docs/kcl/yLineTo.md +++ b/docs/kcl/yLineTo.md @@ -32,8 +32,6 @@ const example = extrude(5, exampleSketch) * `sketch_group`: `SketchGroup` - A sketch group is a collection of paths. (REQUIRED) ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -69,8 +67,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -97,10 +93,6 @@ const example = extrude(5, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -175,24 +167,6 @@ const example = extrude(5, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` * `tag`: `String` (OPTIONAL) @@ -202,8 +176,6 @@ const example = extrude(5, exampleSketch) `SketchGroup` - A sketch group is a collection of paths. ```js { - // The plane id or face id of the sketch group. - entityId: uuid, // The id of the sketch group. id: uuid, // What the sketch is on (can be a plane or a face). @@ -239,8 +211,6 @@ const example = extrude(5, exampleSketch) }, } | { - // the face id the sketch is on - faceId: uuid, // The id of the face. id: uuid, // The original sketch group id of the object we are sketching on. @@ -267,10 +237,6 @@ const example = extrude(5, exampleSketch) z: number, }, }, - // The position of the sketch group. - position: [number, number, number], - // The rotation of the sketch group base plane. - rotation: [number, number, number, number], // The starting path. start: { // The from point. @@ -345,24 +311,6 @@ const example = extrude(5, exampleSketch) to: [number, number], type: "Base", }], - // The x-axis of the sketch group base plane in the 3D space - xAxis: { - x: number, - y: number, - z: number, -}, - // The y-axis of the sketch group base plane in the 3D space - yAxis: { - x: number, - y: number, - z: number, -}, - // The z-axis of the sketch group base plane in the 3D space - zAxis: { - x: number, - y: number, - z: number, -}, } ``` diff --git a/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable--XY-1-Google-Chrome-linux.png b/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable--XY-1-Google-Chrome-linux.png index 9652403a7..ab1937b9b 100644 Binary files a/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable--XY-1-Google-Chrome-linux.png and b/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable--XY-1-Google-Chrome-linux.png differ diff --git a/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable--XZ-1-Google-Chrome-linux.png b/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable--XZ-1-Google-Chrome-linux.png index db6eb6884..b7e282e99 100644 Binary files a/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable--XZ-1-Google-Chrome-linux.png and b/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable--XZ-1-Google-Chrome-linux.png differ diff --git a/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable--YZ-1-Google-Chrome-linux.png b/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable--YZ-1-Google-Chrome-linux.png index 8458ae86d..d8ba9551f 100644 Binary files a/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable--YZ-1-Google-Chrome-linux.png and b/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable--YZ-1-Google-Chrome-linux.png differ diff --git a/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable-YZ-1-Google-Chrome-linux.png b/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable-YZ-1-Google-Chrome-linux.png index 99ecf6f88..464f925a8 100644 Binary files a/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable-YZ-1-Google-Chrome-linux.png and b/e2e/playwright/snapshot-tests.spec.ts-snapshots/extrude-on-default-planes-should-be-stable-YZ-1-Google-Chrome-linux.png differ diff --git a/src/clientSideScene/sceneEntities.ts b/src/clientSideScene/sceneEntities.ts index b7f1e3d79..591bd59f3 100644 --- a/src/clientSideScene/sceneEntities.ts +++ b/src/clientSideScene/sceneEntities.ts @@ -343,11 +343,8 @@ export class SceneEntities { pathToNode: sketchPathToNode, } const dummy = new Mesh() - dummy.position.set( - sketchGroup.position[0], - sketchGroup.position[1], - sketchGroup.position[2] - ) + // TODO: When we actually have sketch positions and rotations we can use them here. + dummy.position.set(0, 0, 0) const orthoFactor = orthoScale(sceneInfra.camControls.camera) const factor = (sceneInfra.camControls.camera instanceof OrthographicCamera @@ -1804,7 +1801,7 @@ export function getSketchQuaternion( ast: kclManager.ast, programMemory: kclManager.programMemory, }) - const zAxis = sketchGroup?.zAxis || sketchNormalBackUp + const zAxis = sketchGroup?.on.zAxis || sketchNormalBackUp return getQuaternionFromZAxis(massageFormats(zAxis)) } export async function getSketchOrientationDetails( @@ -1819,20 +1816,24 @@ export async function getSketchOrientationDetails( programMemory: kclManager.programMemory, }) if (sketchGroup.on.type === 'plane') { - const zAxis = sketchGroup?.zAxis + const zAxis = sketchGroup?.on.zAxis return { quat: getQuaternionFromZAxis(massageFormats(zAxis)), sketchDetails: { sketchPathToNode, zAxis: [zAxis.x, zAxis.y, zAxis.z], - yAxis: [sketchGroup.yAxis.x, sketchGroup.yAxis.y, sketchGroup.yAxis.z], + yAxis: [ + sketchGroup.on.yAxis.x, + sketchGroup.on.yAxis.y, + sketchGroup.on.yAxis.z, + ], origin: [0, 0, 0], faceId: sketchGroup.on.id, }, } } if (sketchGroup.on.type === 'face') { - const faceInfo = await getFaceDetails(sketchGroup.on.faceId) + const faceInfo = await getFaceDetails(sketchGroup.on.id) if (!faceInfo?.origin || !faceInfo?.z_axis || !faceInfo?.y_axis) throw new Error('faceInfo') @@ -1848,7 +1849,7 @@ export async function getSketchOrientationDetails( zAxis: [z_axis.x, z_axis.y, z_axis.z], yAxis: [y_axis.x, y_axis.y, y_axis.z], origin: [origin.x, origin.y, origin.z], - faceId: sketchGroup.on.faceId, + faceId: sketchGroup.on.id, }, } } diff --git a/src/components/ModelingSidebar/ModelingPanes/MemoryPane.test.tsx b/src/components/ModelingSidebar/ModelingPanes/MemoryPane.test.tsx index fa61810d1..8ac993750 100644 --- a/src/components/ModelingSidebar/ModelingPanes/MemoryPane.test.tsx +++ b/src/components/ModelingSidebar/ModelingPanes/MemoryPane.test.tsx @@ -43,20 +43,16 @@ describe('processMemory', () => { theExtrude: [ { type: 'extrudePlane', - position: [0, 0, 0], - rotation: [0, 0, 0, 1], - faceId: expect.any(String), name: '', id: expect.any(String), + faceId: expect.any(String), sourceRange: [170, 194], }, { type: 'extrudePlane', - position: [0, 0, 0], - rotation: [0, 0, 0, 1], - faceId: expect.any(String), name: '', id: expect.any(String), + faceId: expect.any(String), sourceRange: [202, 230], }, ], diff --git a/src/lang/artifact.test.ts b/src/lang/artifact.test.ts index 573c73252..f3fa222da 100644 --- a/src/lang/artifact.test.ts +++ b/src/lang/artifact.test.ts @@ -51,13 +51,7 @@ const mySketch001 = startSketchOn('XY') }, }, ], - position: [0, 0, 0], - rotation: [0, 0, 0, 1], - xAxis: { x: 1, y: 0, z: 0 }, - yAxis: { x: 0, y: 1, z: 0 }, - zAxis: { x: 0, y: 0, z: 1 }, id: expect.any(String), - entityId: expect.any(String), __meta: [{ sourceRange: [46, 71] }], }) }) @@ -79,8 +73,6 @@ const mySketch001 = startSketchOn('XY') value: [ { type: 'extrudePlane', - position: [0, 0, 0], - rotation: [0, 0, 0, 1], faceId: expect.any(String), name: '', id: expect.any(String), @@ -88,8 +80,6 @@ const mySketch001 = startSketchOn('XY') }, { type: 'extrudePlane', - position: [0, 0, 0], - rotation: [0, 0, 0, 1], faceId: expect.any(String), name: '', id: expect.any(String), @@ -119,8 +109,6 @@ const mySketch001 = startSketchOn('XY') }, ], height: 2, - position: [0, 0, 0], - rotation: [0, 0, 0, 1], xAxis: { x: 1, y: 0, z: 0 }, yAxis: { x: 0, y: 1, z: 0 }, zAxis: { x: 0, y: 0, z: 1 }, @@ -162,8 +150,6 @@ const sk2 = startSketchOn('XY') value: [ { type: 'extrudePlane', - position: [0, 0, 0], - rotation: [0, 0, 0, 1], faceId: expect.any(String), name: '', id: expect.any(String), @@ -171,8 +157,6 @@ const sk2 = startSketchOn('XY') }, { type: 'extrudePlane', - position: [0, 0, 0], - rotation: [0, 0, 0, 1], faceId: expect.any(String), name: 'p', id: expect.any(String), @@ -180,8 +164,6 @@ const sk2 = startSketchOn('XY') }, { type: 'extrudePlane', - position: [0, 0, 0], - rotation: [0, 0, 0, 1], faceId: expect.any(String), name: '', id: expect.any(String), @@ -221,8 +203,6 @@ const sk2 = startSketchOn('XY') }, ], height: 2, - position: [0, 0, 0], - rotation: [0, 0, 0, 1], xAxis: { x: 1, y: 0, z: 0 }, yAxis: { x: 0, y: 1, z: 0 }, zAxis: { x: 0, y: 0, z: 1 }, @@ -236,8 +216,6 @@ const sk2 = startSketchOn('XY') value: [ { type: 'extrudePlane', - position: [0, 0, 0], - rotation: [0, 0, 0, 1], faceId: expect.any(String), name: '', id: expect.any(String), @@ -245,8 +223,6 @@ const sk2 = startSketchOn('XY') }, { type: 'extrudePlane', - position: [0, 0, 0], - rotation: [0, 0, 0, 1], faceId: expect.any(String), name: 'p', id: expect.any(String), @@ -254,8 +230,6 @@ const sk2 = startSketchOn('XY') }, { type: 'extrudePlane', - position: [0, 0, 0], - rotation: [0, 0, 0, 1], faceId: expect.any(String), name: '', id: expect.any(String), @@ -295,8 +269,6 @@ const sk2 = startSketchOn('XY') }, ], height: 2, - position: [0, 0, 0], - rotation: [0, 0, 0, 1], xAxis: { x: 1, y: 0, z: 0 }, yAxis: { x: 0, y: 1, z: 0 }, zAxis: { x: 0, y: 0, z: 1 }, diff --git a/src/lang/executor.test.ts b/src/lang/executor.test.ts index 016c9524f..cba7e16df 100644 --- a/src/lang/executor.test.ts +++ b/src/lang/executor.test.ts @@ -177,13 +177,7 @@ const newVar = myVar + 1` }, }, ], - position: [0, 0, 0], - rotation: [0, 0, 0, 1], - xAxis: { x: 1, y: 0, z: 0 }, - yAxis: { x: 0, y: 1, z: 0 }, - zAxis: { x: 0, y: 0, z: 1 }, id: expect.any(String), - entityId: expect.any(String), __meta: [{ sourceRange: [39, 63] }], }) }) diff --git a/src/lang/wasm.ts b/src/lang/wasm.ts index a66746b12..d07d713a8 100644 --- a/src/lang/wasm.ts +++ b/src/lang/wasm.ts @@ -74,8 +74,6 @@ export type SyntaxType = | 'UnaryExpression' export type { SourceRange } from '../wasm-lib/kcl/bindings/SourceRange' -export type { Position } from '../wasm-lib/kcl/bindings/Position' -export type { Rotation } from '../wasm-lib/kcl/bindings/Rotation' export type { Path } from '../wasm-lib/kcl/bindings/Path' export type { SketchGroup } from '../wasm-lib/kcl/bindings/SketchGroup' export type { ExtrudeGroup } from '../wasm-lib/kcl/bindings/ExtrudeGroup' diff --git a/src/wasm-lib/Cargo.lock b/src/wasm-lib/Cargo.lock index 3d05cd95b..886506051 100644 --- a/src/wasm-lib/Cargo.lock +++ b/src/wasm-lib/Cargo.lock @@ -1375,7 +1375,7 @@ dependencies = [ [[package]] name = "kcl-lib" -version = "0.1.61" +version = "0.1.62" dependencies = [ "anyhow", "approx", diff --git a/src/wasm-lib/kcl/Cargo.toml b/src/wasm-lib/kcl/Cargo.toml index 8d34f3b51..df10f027b 100644 --- a/src/wasm-lib/kcl/Cargo.toml +++ b/src/wasm-lib/kcl/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kcl-lib" description = "KittyCAD Language implementation and tools" -version = "0.1.61" +version = "0.1.62" edition = "2021" license = "MIT" repository = "https://github.com/KittyCAD/modeling-app" diff --git a/src/wasm-lib/kcl/src/executor.rs b/src/wasm-lib/kcl/src/executor.rs index eff1d6538..040ee4382 100644 --- a/src/wasm-lib/kcl/src/executor.rs +++ b/src/wasm-lib/kcl/src/executor.rs @@ -289,8 +289,6 @@ pub struct Face { pub y_axis: Point3d, /// The z-axis (normal). pub z_axis: Point3d, - /// the face id the sketch is on - pub face_id: uuid::Uuid, #[serde(rename = "__meta")] pub meta: Vec, } @@ -456,18 +454,6 @@ pub struct SketchGroup { pub on: SketchSurface, /// The starting path. pub start: BasePath, - /// The position of the sketch group. - pub position: Position, - /// The rotation of the sketch group base plane. - pub rotation: Rotation, - /// The x-axis of the sketch group base plane in the 3D space - pub x_axis: Point3d, - /// The y-axis of the sketch group base plane in the 3D space - pub y_axis: Point3d, - /// The z-axis of the sketch group base plane in the 3D space - pub z_axis: Point3d, - /// The plane id or face id of the sketch group. - pub entity_id: Option, /// Metadata. #[serde(rename = "__meta")] pub meta: Vec, @@ -588,10 +574,6 @@ pub struct ExtrudeGroup { pub sketch_group_values: Vec, /// The height of the extrude group. pub height: f64, - /// The position of the extrude group. - pub position: Position, - /// The rotation of the extrude group. - pub rotation: Rotation, /// The x-axis of the extrude group base plane in the 3D space pub x_axis: Point3d, /// The y-axis of the extrude group base plane in the 3D space @@ -626,24 +608,6 @@ pub enum BodyType { Block, } -#[derive(Debug, Deserialize, Serialize, PartialEq, Copy, Clone, ts_rs::TS, JsonSchema)] -#[ts(export)] -pub struct Position(#[ts(type = "[number, number, number]")] pub [f64; 3]); - -impl From for Point3d { - fn from(p: Position) -> Self { - Self { - x: p.0[0], - y: p.0[1], - z: p.0[2], - } - } -} - -#[derive(Debug, Deserialize, Serialize, PartialEq, Copy, Clone, ts_rs::TS, JsonSchema)] -#[ts(export)] -pub struct Rotation(#[ts(type = "[number, number, number, number]")] pub [f64; 4]); - #[derive(Debug, Default, Deserialize, Serialize, PartialEq, Copy, Clone, ts_rs::TS, JsonSchema, Hash, Eq)] #[cfg_attr(feature = "pyo3", pyo3::pyclass)] #[ts(export)] @@ -924,10 +888,6 @@ pub enum ExtrudeSurface { #[ts(export)] #[serde(rename_all = "camelCase")] pub struct ExtrudePlane { - /// The position. - pub position: Position, - /// The rotation. - pub rotation: Rotation, /// The face id for the extrude plane. pub face_id: uuid::Uuid, /// The name. @@ -942,10 +902,6 @@ pub struct ExtrudePlane { #[ts(export)] #[serde(rename_all = "camelCase")] pub struct ExtrudeArc { - /// The position. - pub position: Position, - /// The rotation. - pub rotation: Rotation, /// The face id for the extrude plane. pub face_id: uuid::Uuid, /// The name. @@ -969,20 +925,6 @@ impl ExtrudeSurface { ExtrudeSurface::ExtrudeArc(ea) => ea.name.to_string(), } } - - pub fn get_position(&self) -> Position { - match self { - ExtrudeSurface::ExtrudePlane(ep) => ep.position, - ExtrudeSurface::ExtrudeArc(ea) => ea.position, - } - } - - pub fn get_rotation(&self) -> Rotation { - match self { - ExtrudeSurface::ExtrudePlane(ep) => ep.rotation, - ExtrudeSurface::ExtrudeArc(ea) => ea.rotation, - } - } } #[derive(Debug, Clone, Deserialize, Serialize, PartialEq, ts_rs::TS, JsonSchema)] diff --git a/src/wasm-lib/kcl/src/lib.rs b/src/wasm-lib/kcl/src/lib.rs index c5a08b8fb..99a3fe4f5 100644 --- a/src/wasm-lib/kcl/src/lib.rs +++ b/src/wasm-lib/kcl/src/lib.rs @@ -3,6 +3,7 @@ //! KCL is written in Rust. This crate contains the compiler tooling (e.g. parser, lexer, code generation), //! the standard library implementation, a LSP implementation, generator for the docs, and more. #![recursion_limit = "1024"] +#![allow(clippy::boxed_local)] macro_rules! println { ($($rest:tt)*) => { diff --git a/src/wasm-lib/kcl/src/std/extrude.rs b/src/wasm-lib/kcl/src/std/extrude.rs index 068a7bbf9..b970c869a 100644 --- a/src/wasm-lib/kcl/src/std/extrude.rs +++ b/src/wasm-lib/kcl/src/std/extrude.rs @@ -150,7 +150,7 @@ pub(crate) async fn do_post_extrude( let mut sketch_group = *sketch_group.clone(); // If we were sketching on a face, we need the original face id. - if let SketchSurface::Face(face) = sketch_group.on { + if let SketchSurface::Face(ref face) = sketch_group.on { sketch_group.id = face.sketch_group_id; } @@ -198,8 +198,6 @@ pub(crate) async fn do_post_extrude( match path { Path::TangentialArc { .. } | Path::TangentialArcTo { .. } => { let extrude_surface = ExtrudeSurface::ExtrudeArc(crate::executor::ExtrudeArc { - position: sketch_group.position, // TODO should be for the extrude surface - rotation: sketch_group.rotation, // TODO should be for the extrude surface face_id: *actual_face_id, name: path.get_base().name.clone(), geo_meta: GeoMeta { @@ -211,8 +209,6 @@ pub(crate) async fn do_post_extrude( } Path::Base { .. } | Path::ToPoint { .. } | Path::Horizontal { .. } | Path::AngledLineTo { .. } => { let extrude_surface = ExtrudeSurface::ExtrudePlane(crate::executor::ExtrudePlane { - position: sketch_group.position, // TODO should be for the extrude surface - rotation: sketch_group.rotation, // TODO should be for the extrude surface face_id: *actual_face_id, name: path.get_base().name.clone(), geo_meta: GeoMeta { @@ -226,8 +222,6 @@ pub(crate) async fn do_post_extrude( } else if args.ctx.is_mock { // Only pre-populate the extrude surface if we are in mock mode. new_value.push(ExtrudeSurface::ExtrudePlane(crate::executor::ExtrudePlane { - position: sketch_group.position, // TODO should be for the extrude surface - rotation: sketch_group.rotation, // TODO should be for the extrude surface // pushing this values with a fake face_id to make extrudes mock-execute safe face_id: Uuid::new_v4(), name: path.get_base().name.clone(), @@ -247,11 +241,9 @@ pub(crate) async fn do_post_extrude( value: new_value, sketch_group_values: sketch_group.value.clone(), height: length, - position: sketch_group.position, - rotation: sketch_group.rotation, - x_axis: sketch_group.x_axis, - y_axis: sketch_group.y_axis, - z_axis: sketch_group.z_axis, + x_axis: sketch_group.on.x_axis(), + y_axis: sketch_group.on.y_axis(), + z_axis: sketch_group.on.z_axis(), start_cap_id, end_cap_id, meta: sketch_group.meta, diff --git a/src/wasm-lib/kcl/src/std/sketch.rs b/src/wasm-lib/kcl/src/std/sketch.rs index 3abef7929..61c349f76 100644 --- a/src/wasm-lib/kcl/src/std/sketch.rs +++ b/src/wasm-lib/kcl/src/std/sketch.rs @@ -11,7 +11,7 @@ use crate::{ errors::{KclError, KclErrorDetails}, executor::{ BasePath, ExtrudeGroup, ExtrudeSurface, Face, GeoMeta, MemoryItem, Path, Plane, PlaneType, Point2d, Point3d, - Position, Rotation, SketchGroup, SketchGroupSet, SketchSurface, SourceRange, UserVal, + SketchGroup, SketchGroupSet, SketchSurface, SourceRange, UserVal, }, std::{ utils::{ @@ -1069,22 +1069,8 @@ async fn start_sketch_on_face( })?, }; - // Enter sketch mode on the face. - let id = uuid::Uuid::new_v4(); - args.batch_modeling_cmd( - id, - ModelingCmd::EnableSketchMode { - animated: false, - ortho: false, - entity_id: extrude_plane_id, - adjust_camera: false, - planar_normal: None, - }, - ) - .await?; - Ok(Box::new(Face { - id, + id: extrude_plane_id, value: tag.to_string(), sketch_group_id: extrude_group.id, // TODO: get this from the extrude plane data. @@ -1092,7 +1078,6 @@ async fn start_sketch_on_face( y_axis: extrude_group.y_axis, z_axis: extrude_group.z_axis, meta: vec![args.source_range.into()], - face_id: extrude_plane_id, })) } @@ -1134,20 +1119,6 @@ async fn start_sketch_on_plane(data: PlaneData, args: Args) -> Result } }; - // Enter sketch mode on the plane. - args.batch_modeling_cmd( - uuid::Uuid::new_v4(), - ModelingCmd::EnableSketchMode { - animated: false, - ortho: false, - entity_id: plane.id, - // We pass in the normal for the plane here. - planar_normal: Some(plane.z_axis.clone().into()), - adjust_camera: false, - }, - ) - .await?; - Ok(Box::new(plane)) } @@ -1202,6 +1173,26 @@ pub(crate) async fn inner_start_profile_at( tag: Option, args: Args, ) -> Result, KclError> { + // Enter sketch mode on the surface. + // We call this here so you can reuse the sketch surface for multiple sketches. + let id = uuid::Uuid::new_v4(); + args.batch_modeling_cmd( + id, + ModelingCmd::EnableSketchMode { + animated: false, + ortho: false, + entity_id: sketch_surface.id(), + adjust_camera: false, + planar_normal: if let SketchSurface::Plane(plane) = &sketch_surface { + // We pass in the normal for the plane here. + Some(plane.z_axis.clone().into()) + } else { + None + }, + }, + ) + .await?; + let id = uuid::Uuid::new_v4(); let path_id = uuid::Uuid::new_v4(); @@ -1232,12 +1223,6 @@ pub(crate) async fn inner_start_profile_at( let sketch_group = SketchGroup { id: path_id, on: sketch_surface.clone(), - position: Position([0.0, 0.0, 0.0]), - rotation: Rotation([0.0, 0.0, 0.0, 1.0]), - x_axis: sketch_surface.x_axis(), - y_axis: sketch_surface.y_axis(), - z_axis: sketch_surface.z_axis(), - entity_id: Some(sketch_surface.id()), value: vec![], start: current_path, meta: vec![args.source_range.into()], diff --git a/src/wasm-lib/tests/executor/main.rs b/src/wasm-lib/tests/executor/main.rs index 8fe4c457f..65923b517 100644 --- a/src/wasm-lib/tests/executor/main.rs +++ b/src/wasm-lib/tests/executor/main.rs @@ -2038,3 +2038,39 @@ extrude(10, sketch001) let result = execute_and_snapshot(code, UnitLength::Mm).await.unwrap(); twenty_twenty::assert_image("tests/executor/outputs/array_of_sketches.png", &result, 1.0); } + +#[tokio::test(flavor = "multi_thread")] +async fn serial_test_circular_pattern3d_array_of_extrudes() { + let code = r#"const plane001 = startSketchOn('XZ') + +const sketch001 = plane001 + |> startProfileAt([40.82, 240.82], %) + |> line([235.72, -8.16], %) + |> line([13.27, -253.07], %) + |> line([-247.97, -19.39], %) + |> lineTo([profileStartX(%), profileStartY(%)], %) + |> close(%) + |> extrude(10, %) + +const sketch002 = plane001 + |> startProfileAt([47.17, -71.91], %) + |> line([247.96, -4.03], %) + |> line([-17.26, -116.79], %) + |> line([-235.87, 12.66], %) + |> lineTo([profileStartX(%), profileStartY(%)], %) + |> close(%) + |> extrude(10, %) + + +let extrudes = [sketch001, sketch002] + +const pattn1 = patternLinear3d({ + axis: [0, 1, 0], + repetitions: 2, + distance: 20 + }, extrudes) +"#; + + let result = execute_and_snapshot(code, UnitLength::Mm).await.unwrap(); + twenty_twenty::assert_image("tests/executor/outputs/pattern3d_array_of_extrudes.png", &result, 1.0); +} diff --git a/src/wasm-lib/tests/executor/outputs/array_of_sketches.png b/src/wasm-lib/tests/executor/outputs/array_of_sketches.png index 1e8257abf..cb891de30 100644 Binary files a/src/wasm-lib/tests/executor/outputs/array_of_sketches.png and b/src/wasm-lib/tests/executor/outputs/array_of_sketches.png differ diff --git a/src/wasm-lib/tests/executor/outputs/pattern3d_array_of_extrudes.png b/src/wasm-lib/tests/executor/outputs/pattern3d_array_of_extrudes.png new file mode 100644 index 000000000..5d722df8a Binary files /dev/null and b/src/wasm-lib/tests/executor/outputs/pattern3d_array_of_extrudes.png differ