KCL: Absolute point bezier curves (#7172)

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
This commit is contained in:
Adam Chalmers
2025-05-22 12:06:06 -05:00
committed by GitHub
parent 2c7701e2d4
commit 04a2c184d7
4 changed files with 4960 additions and 45 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB