-
-
Save sixtyfive/5e65d329f110e3431a7f17d4efaf5740 to your computer and use it in GitHub Desktop.
This file contains 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
$fn=50; | |
module shape() { | |
projection(cut = true) | |
translate([0,0,-16.5]) | |
rotate([90,0,0]) | |
import("TKS_GTR_Top_plate_2mm_v3.stl"); // 3rd file from the top of https://www.thingiverse.com/thing:5412876/files | |
} | |
module shell() { | |
difference() { | |
linear_extrude(20) shape(); | |
translate([-7,-50,2.5]) color("red") cube([15,100,15]); // TOOD: actually measure the battery | |
} | |
} | |
shell(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment