d6278cf075
KCL: change twist to a case of extrude ( #7481 )
...
@franknoirot @jtran and I decided that the `extrudeTwist()` function (which I added in https://github.com/KittyCAD/modeling-app/pull/7480 ) would be better as an optional case of the normal `extrude` function. Doing it this way means less work for the frontend team.
2025-06-16 16:35:30 +00:00
c2f6ce065d
KCL: New extrudeTwist endpoint ( #7480 )
...
This does not include feature tree editing support.
2025-06-13 21:17:01 +00:00
e0025f7fad
Release KCL 81 ( #7463 )
2025-06-12 16:20:41 +00:00
3c23cada8e
Release KCL 80 ( #7391 )
2025-06-05 20:34:58 +00:00
5235a731ba
Move sketch functions to KCL; remove Rust decl dead code ( #7335 )
...
Signed-off-by: Nick Cameron <nrc@ncameron.org >
2025-06-04 15:41:01 -04:00
f97bdaf8b7
Release KCL 79 ( #7347 )
2025-06-03 22:04:56 -04:00
569935c21f
Move segment functions to KCL ( #7333 )
...
Signed-off-by: Nick Cameron <nrc@ncameron.org >
2025-06-03 15:15:51 +12:00
1bb96cd878
Release KCL 78 ( #7298 )
2025-05-30 13:48:17 -04:00
80e3dc9095
Move more functions to KCL decls ( #7266 )
...
* Move some sketch functions to KCL
Signed-off-by: Nick Cameron <nrc@ncameron.org >
* Move asserts to KCL
Signed-off-by: Nick Cameron <nrc@ncameron.org >
* sweep, loft -> KCL
Signed-off-by: Nick Cameron <nrc@ncameron.org >
* Move pattern transforms to KCL
Signed-off-by: Nick Cameron <nrc@ncameron.org >
---------
Signed-off-by: Nick Cameron <nrc@ncameron.org >
2025-05-29 19:00:16 -04:00
2ac05508bc
Move edge functions to KCL ( #7259 )
...
Signed-off-by: Nick Cameron <nrc@ncameron.org >
2025-05-29 10:14:04 +12:00
355a450c09
Move transform functions to KCL ( #7239 )
...
Signed-off-by: Nick Cameron <nrc@ncameron.org >
2025-05-28 15:15:04 -04:00
9dfb67cf61
Declare appearance function in KCL ( #7220 )
...
Move appearance to KCL
Signed-off-by: Nick Cameron <nrc@ncameron.org >
2025-05-27 23:25:27 +00:00
067e193780
Move solids functions to KCL ( #7214 )
...
Signed-off-by: Nick Cameron <nrc@ncameron.org >
2025-05-27 20:37:54 +00:00
fa9d5a0104
KCL: Another example of how to use hex color strings ( #7195 )
2025-05-23 23:09:37 -04:00
eb2327827b
Release KCL 77 ( #7188 )
2025-05-23 18:54:04 +00:00
1f53dd1357
KCL: [number; 3] to RGB hex string color function ( #7184 )
...
Closes https://github.com/KittyCAD/modeling-app/issues/6805 . Enables users to programatically construct colors, which will be helpful for
- Applying color to visualize program execution and help debugging
- Doing weird cool shit
2025-05-23 13:53:58 -05:00
f5c244dbb1
KCL: stdlib macro should now assume all functions use keywords ( #7158 )
...
This has been enforced by the parser since #6639 , so there's no need for `keywords = true` in every stdlib function anymore.
2025-05-21 21:10:40 +00:00
0ea1e9a6da
KCL: Customizable per-arg and per-fn snippet values ( #7156 )
...
Before, the LSP snippet for `startProfile` was
```
startProfile(%, at = [3.14, 3.14])
```
Now it's
```
startProfile(%, at = [0, 0])
```
This is configured by adding a `snippet_value=` field to the stdlib macro. For example:
```diff
#[stdlib {
name = "startProfile",
keywords = true,
unlabeled_first = true,
args = {
sketch_surface = { docs = "What to start the profile on" },
- at = { docs = "Where to start the profile. An absolute point." },
+ at = { docs = "Where to start the profile. An absolute point.", snippet_value = "[0, 0]" }, tag = { docs = "Tag this first starting point" },
},
tags = ["sketch"]
}]
```
## Work for follow-up PRs
- Make this work for KCL functions defined in KCL, e.g. [`fn circle`](36c8ad439d/rust/kcl-lib/std/sketch.kcl (L31-L32)
) -- something like `@(snippet_value = "[0, 0]")` perhaps
- Go through the stdlib and change defaults where appropriate
2025-05-21 20:18:20 +00:00
ab63345c57
Run std lib example tests one at a time ( #7127 )
...
Signed-off-by: Nick Cameron <nrc@ncameron.org >
2025-05-21 05:20:36 +00:00
3df02e02fa
Release 76 ( #7138 )
2025-05-21 02:39:32 +00:00
3a599d0a0a
Release KCL 75 ( #7077 )
2025-05-19 19:02:38 +00:00
416de9a9fb
allow more than one tool ( #6945 )
...
* allow more than one tool
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* updates
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* updates
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* updates
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* update tests
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* fmt
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* bump kcl
Signed-off-by: Jess Frazelle <github@jessfraz.com >
---------
Signed-off-by: Jess Frazelle <github@jessfraz.com >
2025-05-16 23:22:50 +00:00
e489222b6a
expose mock executing to python library; ( #6980 )
...
* expose mock executing to python library;
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* bump
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* Update rust/kcl-python-bindings/src/lib.rs
Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
---------
Signed-off-by: Jess Frazelle <github@jessfraz.com >
Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
2025-05-15 12:35:29 -07:00
d93a57d7bf
more lsp tests / pass python a bool on parse ( #6975 )
...
* updates
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* parse returns bool for python
Signed-off-by: Jess Frazelle <github@jessfraz.com >
---------
Signed-off-by: Jess Frazelle <github@jessfraz.com >
2025-05-15 11:04:53 -07:00
d3a4fd8b55
Raw dog parse for python bindings ( #6970 )
...
* raw dog parse python
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* add tests
Signed-off-by: Jess Frazelle <github@jessfraz.com >
---------
Signed-off-by: Jess Frazelle <github@jessfraz.com >
2025-05-15 15:39:28 +00:00
078b7f3bf7
fix errors from the wasm side ( #6939 )
...
* updates
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* playwright tests
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* fix tests
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* updates
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* updates
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* updates
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* change order of operations
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* lint
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* fixups
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* Revert "fixups"
This reverts commit c54fd71074
.
* fixups
Signed-off-by: Jess Frazelle <github@jessfraz.com >
---------
Signed-off-by: Jess Frazelle <github@jessfraz.com >
2025-05-14 13:20:46 -07:00
33e83747f3
Split up example tests into smaller batches and provide info on which example is failing ( #6896 )
...
* Give example info for failing std example tests
Signed-off-by: Nick Cameron <nrc@ncameron.org >
* Shard example tests into 10
Signed-off-by: Nick Cameron <nrc@ncameron.org >
---------
Signed-off-by: Nick Cameron <nrc@ncameron.org >
2025-05-13 10:50:54 -07:00
21b92f5f13
fix cache multi-file ( #6844 )
...
* updates
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* updates
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* bump kittycad.rs i need this for cli
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* bump the version so i can fix cli
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* fix
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* clippy
Signed-off-by: Jess Frazelle <github@jessfraz.com >
---------
Signed-off-by: Jess Frazelle <github@jessfraz.com >
2025-05-12 09:07:18 -05:00
fc3ce4cda8
Release KCL 68 ( #6783 )
2025-05-08 20:41:26 +00:00
91e306f447
Release KCL 67 ( #6751 )
...
Breaking changes:
- Fully removed positional arguments from function calls. Keyword arguments are now the only way to call a function.
Added:
- Warn on usage of the unknown numeric suffix (#6690 )
Fixed:
- Fix units bug with involuteCircular (#6711 )
- Importing 3D files on Windows (#6697 )
2025-05-07 17:54:45 -07:00
9c52f5b19a
Add tags to Rust std lib functions ( #6701 )
...
Signed-off-by: Nick Cameron <nrc@ncameron.org >
2025-05-06 14:14:11 +12:00
19f5031ef7
Release KCL 66 ( #6679 )
...
Breaking changes:
- All functions (even functions defined by users) must use keyword arguments, not positional arguments
2025-05-02 21:55:58 +00:00
16f5d9c284
Docs improvements ( #6615 )
...
Signed-off-by: Nick Cameron <nrc@ncameron.org >
2025-05-01 08:56:27 -07:00
a0afe9dd0e
bump kcl and friends in prep for release ( #6591 )
...
Signed-off-by: Jess Frazelle <github@jessfraz.com >
2025-04-30 15:39:13 +12:00
921adcb3eb
bump kcl lib nad friends ( #6521 )
...
Signed-off-by: Jess Frazelle <github@jessfraz.com >
2025-04-27 02:13:51 -04:00
83a87b046f
Declare std::offsetPlane in KCL ( #6344 )
...
* Declare std::offsetPlane in KCL
Signed-off-by: Nick Cameron <nrc@ncameron.org >
* Use two axes to define planes in KCL
Signed-off-by: Nick Cameron <nrc@ncameron.org >
---------
Signed-off-by: Nick Cameron <nrc@ncameron.org >
2025-04-24 22:01:27 +12:00
900ef9e18d
Release KCL 63 ( #6446 )
2025-04-23 12:35:16 -04:00
a847c7f608
Release KCL 62 ( #6330 )
2025-04-15 15:53:01 +00:00
6c7e42b541
Bump the patch group in /rust with 8 updates ( #6312 )
...
Bumps the patch group in /rust with 8 updates:
| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow ) | `1.0.97` | `1.0.98` |
| [clap](https://github.com/clap-rs/clap ) | `4.5.32` | `4.5.36` |
| [kittycad-modeling-cmds](https://github.com/KittyCAD/modeling-api ) | `0.2.113` | `0.2.114` |
| [once_cell](https://github.com/matklad/once_cell ) | `1.21.1` | `1.21.3` |
| [log](https://github.com/rust-lang/log ) | `0.4.26` | `0.4.27` |
| [flate2](https://github.com/rust-lang/flate2-rs ) | `1.1.0` | `1.1.1` |
| [time](https://github.com/time-rs/time ) | `0.3.40` | `0.3.41` |
| [image](https://github.com/image-rs/image ) | `0.25.5` | `0.25.6` |
Updates `anyhow` from 1.0.97 to 1.0.98
- [Release notes](https://github.com/dtolnay/anyhow/releases )
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.97...1.0.98 )
Updates `clap` from 4.5.32 to 4.5.36
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.32...clap_complete-v4.5.36 )
Updates `kittycad-modeling-cmds` from 0.2.113 to 0.2.114
- [Commits](https://github.com/KittyCAD/modeling-api/compare/kittycad-modeling-cmds-0.2.113...kittycad-modeling-cmds-0.2.114 )
Updates `once_cell` from 1.21.1 to 1.21.3
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md )
- [Commits](https://github.com/matklad/once_cell/compare/v1.21.1...v1.21.3 )
Updates `log` from 0.4.26 to 0.4.27
- [Release notes](https://github.com/rust-lang/log/releases )
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/log/compare/0.4.26...0.4.27 )
Updates `flate2` from 1.1.0 to 1.1.1
- [Release notes](https://github.com/rust-lang/flate2-rs/releases )
- [Commits](https://github.com/rust-lang/flate2-rs/compare/1.1.0...1.1.1 )
Updates `time` from 0.3.40 to 0.3.41
- [Release notes](https://github.com/time-rs/time/releases )
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md )
- [Commits](https://github.com/time-rs/time/compare/v0.3.40...v0.3.41 )
Updates `image` from 0.25.5 to 0.25.6
- [Changelog](https://github.com/image-rs/image/blob/main/CHANGES.md )
- [Commits](https://github.com/image-rs/image/compare/v0.25.5...v0.25.6 )
---
updated-dependencies:
- dependency-name: anyhow
dependency-version: 1.0.98
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: patch
- dependency-name: clap
dependency-version: 4.5.36
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: patch
- dependency-name: kittycad-modeling-cmds
dependency-version: 0.2.114
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: patch
- dependency-name: once_cell
dependency-version: 1.21.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: patch
- dependency-name: log
dependency-version: 0.4.27
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: patch
- dependency-name: flate2
dependency-version: 1.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: patch
- dependency-name: time
dependency-version: 0.3.41
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: patch
- dependency-name: image
dependency-version: 0.25.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-14 09:48:43 -07:00
67a8bf525d
bump kcl friends ( #6288 )
...
Signed-off-by: Jess Frazelle <github@jessfraz.com >
2025-04-11 19:10:37 +00:00
c45c2e27ba
make sure the nix flake never breaks ( #6273 )
...
make sure teh nix flake never breaks
Signed-off-by: Jess Frazelle <github@jessfraz.com >
2025-04-11 06:27:42 +00:00
6d50278d34
bump kcl friends ( #6272 )
...
Signed-off-by: Jess Frazelle <github@jessfraz.com >
2025-04-10 19:01:30 -07:00
be05dd7ba1
More propagation of numeric types ( #6177 )
...
Signed-off-by: Nick Cameron <nrc@ncameron.org >
2025-04-07 19:02:41 +12:00
c6766d2a73
bump kcl and friends ( #6122 )
...
Signed-off-by: Jess Frazelle <github@jessfraz.com >
2025-04-02 14:28:32 -07:00
7329753211
Bump kcl versions ( #6089 )
2025-04-01 12:43:27 -04:00
73694563cf
change TyF64 to f64 according to JsonSchema and cleanup docs code ( #6081 )
...
* cleanup gen_std
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* cleanup docs
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* updates
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* fix table
Signed-off-by: Jess Frazelle <github@jessfraz.com >
---------
Signed-off-by: Jess Frazelle <github@jessfraz.com >
2025-04-01 01:02:48 +00:00
efc8c82d8b
BREAKING: KCL @settings are the source of truth for units ( #5808 )
2025-03-31 10:56:03 -04:00
0bdc50c78f
bump kcl-lib and friends ( #6063 )
...
* bump kcl-lib and friends
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* expose
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* relevant files
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* udpates
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* fixes
Signed-off-by: Jess Frazelle <github@jessfraz.com >
* updates
Signed-off-by: Jess Frazelle <github@jessfraz.com >
---------
Signed-off-by: Jess Frazelle <github@jessfraz.com >
2025-03-29 19:26:20 -07:00
0677474097
Bump KCL in prep for release ( #6010 )
2025-03-26 15:52:32 +00:00
e4edffa569
bump kcl friends ( #5993 )
...
Signed-off-by: Jess Frazelle <github@jessfraz.com >
2025-03-25 11:05:17 -07:00