Skip to content

Instantly share code, notes, and snippets.

@sixtyfive
Last active June 12, 2024 00:34
Show Gist options
  • Save sixtyfive/5e65d329f110e3431a7f17d4efaf5740 to your computer and use it in GitHub Desktop.
Save sixtyfive/5e65d329f110e3431a7f17d4efaf5740 to your computer and use it in GitHub Desktop.
$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