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])