Created
April 18, 2026 19:59
-
-
Save Peetz0r/976956d8fe086b86a36c70c88aa98289 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| difference() { | |
| cube([134, 134, 16]); | |
| translate([1, 1, 3]) cube([132, 132, 20]); | |
| for(x=[0:4:126]) { | |
| for(y=[0:4:126]) { | |
| translate([3.2+x, 3.2+y, 0.25]) cube([3.6, 3.6, 20]); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment