From a7fd64a3685e380938d214b3f87c52f2cd0cd3df Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Tue, 25 Apr 2017 10:16:25 +0800 Subject: [PATCH] deleted unnecessary module --- src/rotate_p.scad | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/rotate_p.scad b/src/rotate_p.scad index 9e0b61ad..828872c5 100644 --- a/src/rotate_p.scad +++ b/src/rotate_p.scad @@ -11,17 +11,6 @@ * **/ -module arc(radius, angles, width, width_mode = "LINE_CROSS") { - w_offset = width_mode == "LINE_CROSS" ? [width / 2, -width / 2] : ( - width_mode == "LINE_INWARD" ? [0, -width] : [width, 0] - ); - - difference() { - circular_sector(radius + w_offset[0], angles); - circular_sector(radius + w_offset[1], angles); - } -} - function _rotx(pt, a) = let(cosa = cos(a), sina = sin(a)) [