diff --git a/content/pages/docs/kcl-samples/car-wheel-assembly/brake-rotor.kcl b/content/pages/docs/kcl-samples/car-wheel-assembly/brake-rotor.kcl index f11aa940..062b865b 100644 --- a/content/pages/docs/kcl-samples/car-wheel-assembly/brake-rotor.kcl +++ b/content/pages/docs/kcl-samples/car-wheel-assembly/brake-rotor.kcl @@ -2,7 +2,7 @@ // Vented rotor with a bell and rear friction disc. // Set units and version -@settings(defaultLengthUnit = in, kclVersion = 2.0) +@settings(defaultLengthUnit = in, kclVersion = 1.0) // Import parameters import * from "parameters.kcl" diff --git a/content/pages/docs/kcl-samples/car-wheel-assembly/car-tire.kcl b/content/pages/docs/kcl-samples/car-wheel-assembly/car-tire.kcl index 15361c6d..c38179d4 100644 --- a/content/pages/docs/kcl-samples/car-wheel-assembly/car-tire.kcl +++ b/content/pages/docs/kcl-samples/car-wheel-assembly/car-tire.kcl @@ -2,7 +2,7 @@ // Solver sketch version of the full tire profile. // Set units and version -@settings(defaultLengthUnit = in, kclVersion = 2.0) +@settings(defaultLengthUnit = in, kclVersion = 1.0) // Import parameters import * from "parameters.kcl" diff --git a/content/pages/docs/kcl-samples/car-wheel-assembly/car-wheel.kcl b/content/pages/docs/kcl-samples/car-wheel-assembly/car-wheel.kcl index 037c10e0..23c56f3b 100644 --- a/content/pages/docs/kcl-samples/car-wheel-assembly/car-wheel.kcl +++ b/content/pages/docs/kcl-samples/car-wheel-assembly/car-wheel.kcl @@ -2,7 +2,7 @@ // A sports car wheel with a circular lug pattern and spokes. // Set units and version -@settings(defaultLengthUnit = in, kclVersion = 2.0) +@settings(defaultLengthUnit = in, kclVersion = 1.0) // Import parameters import * from "parameters.kcl" diff --git a/content/pages/docs/kcl-samples/car-wheel-assembly/lug-nut.kcl b/content/pages/docs/kcl-samples/car-wheel-assembly/lug-nut.kcl index aee2afb4..dab8f10f 100644 --- a/content/pages/docs/kcl-samples/car-wheel-assembly/lug-nut.kcl +++ b/content/pages/docs/kcl-samples/car-wheel-assembly/lug-nut.kcl @@ -2,7 +2,7 @@ // Solver sketch version of the lug nut profile. // Set units and version -@settings(defaultLengthUnit = in, kclVersion = 2.0) +@settings(defaultLengthUnit = in, kclVersion = 1.0) // Import parameters import * from "parameters.kcl" diff --git a/content/pages/docs/kcl-samples/car-wheel-assembly/main.kcl b/content/pages/docs/kcl-samples/car-wheel-assembly/main.kcl index ce885267..4e8c9c5e 100644 --- a/content/pages/docs/kcl-samples/car-wheel-assembly/main.kcl +++ b/content/pages/docs/kcl-samples/car-wheel-assembly/main.kcl @@ -3,7 +3,7 @@ // Categories: Automotive // Set units and version -@settings(defaultLengthUnit = in, kclVersion = 2.0) +@settings(defaultLengthUnit = in, kclVersion = 1.0) // Import parameters import * from "parameters.kcl" diff --git a/content/pages/docs/kcl-samples/stylized-car/main.kcl b/content/pages/docs/kcl-samples/stylized-car/main.kcl index da1f6f73..1b70abd2 100644 --- a/content/pages/docs/kcl-samples/stylized-car/main.kcl +++ b/content/pages/docs/kcl-samples/stylized-car/main.kcl @@ -15,7 +15,7 @@ // for game assets, placeholder art, or visual-scripting demos. // Set units and version -@settings(defaultLengthUnit = m, kclVersion = 2.0) +@settings(defaultLengthUnit = m, kclVersion = 1.0) // Chassis dimensions chassisLength = 3.5 // total vehicle length diff --git a/content/pages/docs/kcl-std/functions/std-sketch-angledLine.md b/content/pages/docs/kcl-std/functions/std-sketch-angledLine.md index c19c5e88..e9b5784b 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-angledLine.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-angledLine.md @@ -5,6 +5,8 @@ excerpt: "Draw a line segment relative to the current origin using the polar mea layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Draw a line segment relative to the current origin using the polar measure of some angle and distance. ```kcl @@ -20,7 +22,7 @@ angledLine( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). ### Arguments diff --git a/content/pages/docs/kcl-std/functions/std-sketch-angledLineThatIntersects.md b/content/pages/docs/kcl-std/functions/std-sketch-angledLineThatIntersects.md index 0d786fcf..c9113a18 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-angledLineThatIntersects.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-angledLineThatIntersects.md @@ -5,6 +5,8 @@ excerpt: "Draw an angled line from the current origin, constructing a line segme layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Draw an angled line from the current origin, constructing a line segment such that the newly created line intersects the desired target line segment. ```kcl @@ -17,7 +19,7 @@ angledLineThatIntersects( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). ### Arguments diff --git a/content/pages/docs/kcl-std/functions/std-sketch-arc.md b/content/pages/docs/kcl-std/functions/std-sketch-arc.md index 6fdf9842..12f5d3f3 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-arc.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-arc.md @@ -5,6 +5,8 @@ excerpt: "Draw a curved line segment along an imaginary circle." layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Draw a curved line segment along an imaginary circle. ```kcl @@ -20,7 +22,7 @@ arc( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). The arc is constructed such that the current position of the sketch is diff --git a/content/pages/docs/kcl-std/functions/std-sketch-bezierCurve.md b/content/pages/docs/kcl-std/functions/std-sketch-bezierCurve.md index 74f27057..55d9c051 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-bezierCurve.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-bezierCurve.md @@ -5,6 +5,8 @@ excerpt: "Draw a smooth, continuous, curved line segment from the current origin layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Draw a smooth, continuous, curved line segment from the current origin to the desired (x, y), using a number of control points to shape the curve's shape. ```kcl @@ -20,7 +22,7 @@ bezierCurve( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). The sketch-solve version of bezier curve is still under development. diff --git a/content/pages/docs/kcl-std/functions/std-sketch-circle.md b/content/pages/docs/kcl-std/functions/std-sketch-circle.md index 52ac7c44..c3913d0c 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-circle.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-circle.md @@ -5,6 +5,8 @@ excerpt: "Construct a 2-dimensional circle, of the specified radius, centered at layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Construct a 2-dimensional circle, of the specified radius, centered at the provided (x, y) origin point. ```kcl @@ -17,7 +19,7 @@ circle( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). ### Arguments diff --git a/content/pages/docs/kcl-std/functions/std-sketch-circleThreePoint.md b/content/pages/docs/kcl-std/functions/std-sketch-circleThreePoint.md index f4e8037d..02e8704f 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-circleThreePoint.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-circleThreePoint.md @@ -5,6 +5,8 @@ excerpt: "Construct a circle derived from 3 points." layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Construct a circle derived from 3 points. ```kcl @@ -17,7 +19,7 @@ circleThreePoint( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). ### Arguments diff --git a/content/pages/docs/kcl-std/functions/std-sketch-close.md b/content/pages/docs/kcl-std/functions/std-sketch-close.md index d30440cb..59ad6b8e 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-close.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-close.md @@ -5,6 +5,8 @@ excerpt: "Construct a line segment from the current origin back to the profile's layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Construct a line segment from the current origin back to the profile's origin, ensuring the resulting 2-dimensional sketch is not open-ended. ```kcl @@ -14,7 +16,7 @@ close( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). If you want to perform some 3-dimensional operation on a sketch, like diff --git a/content/pages/docs/kcl-std/functions/std-sketch-involuteCircular.md b/content/pages/docs/kcl-std/functions/std-sketch-involuteCircular.md index 40b0739d..c67d25fe 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-involuteCircular.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-involuteCircular.md @@ -5,6 +5,8 @@ excerpt: "Extend the current sketch with a new involute circular curve." layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Extend the current sketch with a new involute circular curve. ```kcl @@ -20,9 +22,9 @@ involuteCircular( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of -[sketch-solve](/docs/kcl-std/modules/std-solver). The sketch-solve version -of involute circular is still under development. +This is part of sketch v1 and is deprecated in favor of +[sketch-solve](/docs/kcl-std/modules/std-solver) and the +[gear module](/docs/kcl-std/modules/std-gear). ### Arguments diff --git a/content/pages/docs/kcl-std/functions/std-sketch-line.md b/content/pages/docs/kcl-std/functions/std-sketch-line.md index ceae769a..eb5b06e9 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-line.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-line.md @@ -5,6 +5,8 @@ excerpt: "Extend the current sketch with a new straight line." layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Extend the current sketch with a new straight line. ```kcl @@ -16,7 +18,7 @@ line( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). ### Arguments diff --git a/content/pages/docs/kcl-std/functions/std-sketch-polygon.md b/content/pages/docs/kcl-std/functions/std-sketch-polygon.md index f9bf1ce4..c644bbf5 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-polygon.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-polygon.md @@ -5,6 +5,8 @@ excerpt: "Create a regular polygon with the specified number of sides that is ei layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Create a regular polygon with the specified number of sides that is either inscribed or circumscribed around a circle of the specified radius. ```kcl @@ -17,7 +19,7 @@ polygon( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). ### Arguments diff --git a/content/pages/docs/kcl-std/functions/std-sketch-rectangle.md b/content/pages/docs/kcl-std/functions/std-sketch-rectangle.md index 3bbe9ffe..dd6115a2 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-rectangle.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-rectangle.md @@ -5,6 +5,8 @@ excerpt: "Sketch a rectangle." layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Sketch a rectangle. ```kcl @@ -17,7 +19,7 @@ rectangle( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). A rectangle can be defined by its width, height, and location. Either the center or corner must be provided, but not both, to specify its location. diff --git a/content/pages/docs/kcl-std/functions/std-sketch-startProfile.md b/content/pages/docs/kcl-std/functions/std-sketch-startProfile.md index 6b4ccc82..d3251125 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-startProfile.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-startProfile.md @@ -5,6 +5,8 @@ excerpt: "Start a new profile at a given point." layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Start a new profile at a given point. ```kcl @@ -15,7 +17,7 @@ startProfile( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). ### Arguments diff --git a/content/pages/docs/kcl-std/functions/std-sketch-startSketchOn.md b/content/pages/docs/kcl-std/functions/std-sketch-startSketchOn.md index e434ea4b..6565148e 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-startSketchOn.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-startSketchOn.md @@ -5,6 +5,8 @@ excerpt: "Start a new 2-dimensional sketch on a specific plane or face." layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Start a new 2-dimensional sketch on a specific plane or face. ```kcl @@ -17,7 +19,7 @@ startSketchOn( ): Plane | Face ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). ### Sketch on Face Behavior diff --git a/content/pages/docs/kcl-std/functions/std-sketch-subtract2d.md b/content/pages/docs/kcl-std/functions/std-sketch-subtract2d.md index a7a93252..ae23970d 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-subtract2d.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-subtract2d.md @@ -5,6 +5,8 @@ excerpt: "Use a 2-dimensional sketch to cut a hole in another 2-dimensional sket layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Use a 2-dimensional sketch to cut a hole in another 2-dimensional sketch. ```kcl @@ -14,7 +16,7 @@ subtract2d( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). ### Arguments diff --git a/content/pages/docs/kcl-std/functions/std-sketch-tangentialArc.md b/content/pages/docs/kcl-std/functions/std-sketch-tangentialArc.md index b75f3a1a..71160484 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-tangentialArc.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-tangentialArc.md @@ -5,6 +5,8 @@ excerpt: "Starting at the current sketch's origin, draw a curved line segment al layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Starting at the current sketch's origin, draw a curved line segment along some part of an imaginary circle until it reaches the desired (x, y) coordinates. ```kcl @@ -19,7 +21,7 @@ tangentialArc( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). When using radius and angle, draw a curved line segment along part of an diff --git a/content/pages/docs/kcl-std/functions/std-sketch-xLine.md b/content/pages/docs/kcl-std/functions/std-sketch-xLine.md index 92bb0022..320495c4 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-xLine.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-xLine.md @@ -5,6 +5,8 @@ excerpt: "Draw a line relative to the current origin to a specified distance awa layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Draw a line relative to the current origin to a specified distance away from the current position along the 'x' axis. ```kcl @@ -16,7 +18,7 @@ xLine( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). ### Arguments diff --git a/content/pages/docs/kcl-std/functions/std-sketch-yLine.md b/content/pages/docs/kcl-std/functions/std-sketch-yLine.md index d2984eb1..5b30f515 100644 --- a/content/pages/docs/kcl-std/functions/std-sketch-yLine.md +++ b/content/pages/docs/kcl-std/functions/std-sketch-yLine.md @@ -5,6 +5,8 @@ excerpt: "Draw a line relative to the current origin to a specified distance awa layout: manual --- +**WARNING:** This function is deprecated as of KCL 2.0. + Draw a line relative to the current origin to a specified distance away from the current position along the 'y' axis. ```kcl @@ -16,7 +18,7 @@ yLine( ): Sketch ``` -This is part of sketch v1 and is soft deprecated in favor of +This is part of sketch v1 and is deprecated in favor of [sketch-solve](/docs/kcl-std/modules/std-solver). ### Arguments