1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-04-21 14:41:51 +02:00

update doc

This commit is contained in:
Justin Lin 2021-06-22 18:02:33 +08:00
parent a43647ea41
commit 95c5076a0a

View File

@ -1,13 +1,13 @@
# sf_solidify
It solidifies two square surfaces, described as a list of points `[x, y, z]`.
It solidifies two square surfaces, described as a m * n list of `[x, y, z]`s.
**Since:** 2.3
## Parameters
- `surface1` : A list of points `[x, y, z]`.
- `surface2` : A list of points `[x, y, z]`.
- `surface1` : A m * n list of `[x, y, z]`s.
- `surface2` : A m * n list of `[x, y, z]`s.
- `slicing` : Given a rectangle, we have two ways to slice it into two triangles. Using this parameter to determine the way you want. It accepts `"SLASH"` (default) and `"BACK_SLASH"`.
## Examples