From aa42d2cd4e3a98631b2b485432e87f23fdd2968c Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Thu, 15 Jul 2021 12:23:48 +0800 Subject: [PATCH] delete y_offset --- examples/twice_ring_extrude.scad | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/twice_ring_extrude.scad b/examples/twice_ring_extrude.scad index 786bd97a..08e27c4b 100644 --- a/examples/twice_ring_extrude.scad +++ b/examples/twice_ring_extrude.scad @@ -24,9 +24,6 @@ twice_ring_extrude( shape_turns = 3 ); -function y_offset(shape, d) = - [for(p = shape) [p[0], p[1] + d]]; - module twice_ring_extrude(shape, r, shape_turns) { t = 360 * shape_turns; ring_extrude(shape, radius = r, twist = t, angle = 720);