From e7b92cf52b40f718326ab8795833594f1e3f547e Mon Sep 17 00:00:00 2001 From: Matthew Ebersviller Date: Fri, 9 Jul 2021 10:57:06 -0600 Subject: [PATCH] Update squared_scoop.scad Fixed some formatting to be easier to read --- src/dishes/squared_scoop.scad | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dishes/squared_scoop.scad b/src/dishes/squared_scoop.scad index 9a8f74c..366f2a9 100644 --- a/src/dishes/squared_scoop.scad +++ b/src/dishes/squared_scoop.scad @@ -17,10 +17,10 @@ module squared_scoop_dish(height, width, depth, r=0.5, inverted=false, num=4, de //This is the set of points to hull around for the scoop points=[ - [height/den - height/2,width/den - width/2, -chord], - [num*height/den - height/2,width/den - width/2,-chord], - [height/den - height/2,num*width/den - width/2, -chord], - [num*height/den - height/2,num*width/den - width/2,-chord] + [height/den - height/2, width/den - width/2, -chord], + [num*height/den - height/2, width/den - width/2, -chord], + [height/den - height/2, num*width/den - width/2, -chord], + [num*height/den - height/2, num*width/den - width/2, -chord] ]; resize([height,width,depth])