From 7580b85877612dc641f178462139162dcde1c376 Mon Sep 17 00:00:00 2001
From: Adrian Mariano <avm4@cornell.edu>
Date: Thu, 7 Oct 2021 22:26:23 -0400
Subject: [PATCH] bug fix

---
 geometry.scad | 1 -
 1 file changed, 1 deletion(-)

diff --git a/geometry.scad b/geometry.scad
index ab10f1a..152606c 100644
--- a/geometry.scad
+++ b/geometry.scad
@@ -1696,7 +1696,6 @@ function _is_cw2(a,b,c,eps=EPSILON) = cross(a-c,b-c)<eps*norm(a-c)*norm(b-c);
 
 // For algorithm see 2.07 here: http://www.faqs.org/faqs/graphics/algorithms-faq/
 function is_polygon_clockwise(poly) =
-let(  
     assert(is_path(poly,dim=2), "Input should be a 2d path")
     let(
         minx = min(poly*[1,0]),