tetrahedron

This commit is contained in:
Trammell Hudson 2015-02-14 19:46:22 -05:00
parent 1e490d05f7
commit e21f07ce0a

19
tetrahedron.scad Normal file
View File

@ -0,0 +1,19 @@
module tetrahedron()
{
polyhedron(
points=[
[+1,0,-1/sqrt(2)],
[-1,0,-1/sqrt(2)],
[0,+1,+1/sqrt(2)],
[0,-1,+1/sqrt(2)]
],
faces=[
[1,0,2],
[2,0,3],
[0,1,3],
[1,2,3]
]
);
}
scale(10) tetrahedron();