From: Ian Jackson Date: Thu, 28 Jan 2016 00:16:43 +0000 (+0000) Subject: lemon-stand.scad.pl: assembly wip X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=c8a6cfa3b96af91038104ee9c2d7213983b60cbc;p=reprap-play.git lemon-stand.scad.pl: assembly wip --- diff --git a/lemon-stand.scad.pl b/lemon-stand.scad.pl index 048f4d7..308892a 100755 --- a/lemon-stand.scad.pl +++ b/lemon-stand.scad.pl @@ -7,11 +7,6 @@ use IO::File; use Data::Dumper; use constant tau => pi*2; -print <error and die $!; STDOUT->flush or die $!; __DATA__ -Torusy(); -Channels(); +module Stand(){ + difference(){ + translate([0,0,torusyup]) + Torusy(); + Channels(); + translate([-200,-200,-50]) + cube([400,400,50]); + } +} +Stand();