Update docs

This commit is contained in:
Adam Chalmers
2025-05-07 13:36:42 -05:00
parent 859243ba32
commit 8f7ef4967f
7 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,16 @@
---
title: "cutStrategy::automatic"
subtitle: "Constant in cutStrategy"
excerpt: "Try the fast but simple Basic strategy, and if that fails, try the slow and complex CSG strategy."
layout: manual
---
Try the fast but simple Basic strategy, and if that fails, try the slow and complex CSG strategy.
```kcl
cutStrategy::automatic: string = "automatic"
```

View File

@ -0,0 +1,16 @@
---
title: "cutStrategy::basic"
subtitle: "Constant in cutStrategy"
excerpt: "The basic strategy is fastest, but it can't handle complicated cases (like chamfering two edges that touch)."
layout: manual
---
The basic strategy is fastest, but it can't handle complicated cases (like chamfering two edges that touch).
```kcl
cutStrategy::basic: string = "basic"
```

View File

@ -0,0 +1,16 @@
---
title: "cutStrategy::csg"
subtitle: "Constant in cutStrategy"
excerpt: "The CSG strategy is slowest, but it can handle complex cases (like chamfering two edges that touch)."
layout: manual
---
The CSG strategy is slowest, but it can handle complex cases (like chamfering two edges that touch).
```kcl
cutStrategy::csg: string = "csg"
```