From fe59eb99d0cc3c97474774e7a67ea82ac6cbeb6a Mon Sep 17 00:00:00 2001 From: Julia Longtin Date: Sat, 11 Jan 2020 01:35:20 +0000 Subject: [PATCH] add another example. --- Examples/example24.escad | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Examples/example24.escad diff --git a/Examples/example24.escad b/Examples/example24.escad new file mode 100644 index 0000000..9ced569 --- /dev/null +++ b/Examples/example24.escad @@ -0,0 +1,10 @@ +// example24.escad -- the variably twisted extruded product of the difference of 5 circles. +linear_extrude (height = 40, center=true, twist(h) = 35*cos(h*2*pi/60)) { + difference (r = 8) { + circle (10); + translate ([22,0]) circle (10); + translate ([0,22]) circle (10); + translate ([-22,0]) circle (10); + translate ([0,-22]) circle (10); + } +}