1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 14:18:13 +01:00
dotSCAD/docs/lib3x-polyhedra_tetrahedron.md
Justin Lin 9022cb731d rename
2021-10-28 08:04:26 +08:00

419 B

tetrahedron

Creates 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