This commit is contained in:
Matthew Ebersviller 2021-07-09 12:23:37 -06:00
commit 3fca4e26ca
1 changed files with 4 additions and 4 deletions

View File

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