Initial commit

This commit is contained in:
Matt McWilliams 2024-05-27 20:41:23 -04:00
commit 693e040826
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
PrismSize = 15;
module prism (pos = [0, 0, 0], rot = [0, 0, 0]) {
translate(pos) rotate(rot) {
rotate([0, 0, -45]) difference () {
rotate([0, 0, 45]) cube([PrismSize, PrismSize, PrismSize], center = true);
translate([PrismSize, 0, 0]) cube([PrismSize * 2, PrismSize * 2, PrismSize + 1], center = true);
}
}
}
prism();