Update squared_scoop.scad

Fixed some formatting to be easier to read
This commit is contained in:
Matthew Ebersviller 2021-07-09 10:57:06 -06:00 committed by GitHub
parent 29f5cd2468
commit e7b92cf52b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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])