Update fillet+chamfer with new API options

This commit is contained in:
Adam Chalmers
2025-05-07 12:13:16 -05:00
parent 43d5a72514
commit 2eeffe92ba
11 changed files with 155 additions and 85 deletions

View File

@ -0,0 +1,9 @@
@no_std
@settings(defaultLengthUnit = mm, kclVersion = 1.0)
/// Try the fast but simple Basic strategy, and if that fails, try the slow and complex CSG strategy.
export automatic = "automatic"
/// The basic strategy is fastest, but it can't handle complicated cases (like chamfering two edges that touch).
export basic = "basic"
/// The CSG strategy is slowest, but it can handle complex cases (like chamfering two edges that touch).
export csg = "csg"