From: Ian Jackson Date: Sun, 27 Jan 2019 18:39:00 +0000 (+0000) Subject: treefoi: more X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=0aab309501e2f387193d20aa8cc2d6402de47e4b treefoi: more Signed-off-by: Ian Jackson --- diff --git a/treefoil.scad.pl b/treefoil.scad.pl index b1ceecb..82b0c59 100755 --- a/treefoil.scad.pl +++ b/treefoil.scad.pl @@ -36,3 +36,21 @@ o "}\n\n"; while () { o $_ } __DATA__ + +thick = 8; + +// calculated + +octa_long = thick; +octa_short = octa_long / (1 + sqrt(2)); + +module OctaThing() { + foreach (r = [[0,0,0], [90,0,0], [0,90,0]]) { + rotate(r) + cube([ octa_short,octa_short, octa_long ], center=true); + } +} + +OctaThing(); + +