From 37e272e3333c9153617b2874a9d2750ad3655b93 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Tue, 11 Jun 2019 09:30:07 +0800 Subject: [PATCH] use 0 directly --- src/crystal_ball.scad | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/crystal_ball.scad b/src/crystal_ball.scad index 40ada447..198aac0b 100644 --- a/src/crystal_ball.scad +++ b/src/crystal_ball.scad @@ -21,13 +21,10 @@ module crystal_ball(radius, theta = 360, phi = 180) { $fn = __nearest_multiple_of_4(frags) ); - // _hole_r = 0.0005 for avoiding warnings when using 2015.03 - // I downloaded 2017.01.20 and found that the problem is solved. - _hole_r = version_num() >= 20170120 ? 0 : 0.0005; ring_extrude( shape_pts, angle = theta, - radius = _hole_r, + radius = 0, $fn = frags );