Previously KCL bezier curves could only use relative control points. Now you can use absolute control points too. Here's an example of the new arguments: ```kcl startSketchOn(XY) |> startProfile(at = [300, 300]) |> bezierCurve(control1Absolute = [600, 300], control2Absolute = [-300, -100], endAbsolute = [600, 300]) |> close() |> extrude(length = 10) ``` Closes https://github.com/KittyCAD/modeling-app/issues/7083
Rust Crates
Releasing
- Make sure your working directory is this directory.
- Bump the versions of the crates:
just bump-kcl-crate-versions
- Commit the changes:
git add . git commit -m "Bump versions"
- Push the changes and get your PR approved.
- Publish the crates:
just publish-kcl {version}
- This will publish the relevant crates and push a new tag with the prefix
kcl-
. DO NOT SET THE PREFIX TOkcl-
when you run the command. Thejust
command will do that for you. - The tag will then trigger the release of
kcl-python-bindings
andkcl-language-server
.
- This will publish the relevant crates and push a new tag with the prefix