tetrahedron
This commit is contained in:
parent
1e490d05f7
commit
e21f07ce0a
19
tetrahedron.scad
Normal file
19
tetrahedron.scad
Normal 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();
|
Loading…
Reference in New Issue
Block a user