Compare commits

...

1 Commits

Author SHA1 Message Date
Joel Ebel
583fe6a198 Remove some whitespace
And change a *.5 to a /2 for consistency and to save a character.
2019-12-27 14:59:55 -05:00

View File

@ -430,7 +430,7 @@ module tab() {
translate([0, ScrewHole*2, PartMargin]) { translate([0, ScrewHole*2, PartMargin]) {
difference() { difference() {
sphere(d=(ScrewHole - PartMargin*2), $fn=100); sphere(d=(ScrewHole - PartMargin*2), $fn=100);
translate([0, 0, ScrewHole*.5 + TabThick/2]) { translate([0, 0, ScrewHole/2 + TabThick/2]) {
cube(ScrewHole, center=true); cube(ScrewHole, center=true);
} }
} }