openscad/examples/example011.scad

17 lines
176 B
OpenSCAD
Raw Normal View History

polyeder(
points = [
[10 0 0],
[ 0 10 0],
[ -10 0 0],
[ 0 -10 0],
[ 0 0 10]
],
triangles = [
[0 1 2 3],
[4 1 0],
[4 2 1],
[4 3 2],
[4 0 3]
]
);