From: Ian Jackson Date: Sun, 27 Jan 2019 18:45:45 +0000 (+0000) Subject: treefoi: more, a thing X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=fc7b09607d0955ec7acbe0ef99217cea064c6e0c;p=reprap-play.git treefoi: more, a thing Signed-off-by: Ian Jackson --- diff --git a/treefoil.scad.pl b/treefoil.scad.pl index 160c175..7609d39 100755 --- a/treefoil.scad.pl +++ b/treefoil.scad.pl @@ -54,6 +54,15 @@ module OctaThing() { } } -OctaThing(); +module TraceEdge(p,q) { + hull(){ + for (x=[p,q]) { + translate(x * edgeu) + OctaThing(); + } + } +} + +Trace();