1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 06:08:31 +01:00
This commit is contained in:
Justin Lin 2021-10-18 16:00:56 +08:00
parent 37c3a647a5
commit 6bda39ecef
2 changed files with 22 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

22
docs/lib3x-tetrahedron.md Normal file
View File

@ -0,0 +1,22 @@
# tetrahedron
Create a tetrahedron.
**Since:** 3.2
## Parameters
- `radius` : Radius of the tetrahedron.
- `detail` : Default to 0. Setting this to a value greater than 0 adds vertices making it no longer a tetrahedron.
## Examples
use <polyhedra/tetrahedron.scad>;
for(i = [0:5]) {
translate([i * 2, 0])
tetrahedron(radius = 1, detail = i);
}
![tetrahedron](images/lib3x-tetrahedron-1.JPG)