1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-13 18:24:28 +02:00

add dodecahedron

This commit is contained in:
Justin Lin
2021-09-22 16:08:48 +08:00
parent 9340f73f1a
commit af9cfb16e4

View File

@@ -0,0 +1,6 @@
use <experimental/geom_dodecahedron.scad>;
module dodecahedron(radius, detail = 0, quick_mode = true) {
points_faces = geom_dodecahedron(radius, detail, quick_mode);
polyhedron(points_faces[0], points_faces[1]);
}