You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
854B

  1. $fn=64;
  2. baseplate_hole_distance = 56;
  3. battery_x = 105;
  4. battery_y = 35;
  5. battery_z = 23;
  6. frame_x = 10;
  7. frame_y = 62;
  8. frame_z = 3;
  9. module cube_centered(x,y,z) {
  10. translate([-x/2, -y/2, 0]) cube([x, y, z]);
  11. }
  12. module cube_round_corners(x,y,z) {
  13. hull() {
  14. translate([-x/2, -y/2, 0]) cylinder(r=3, h=z);
  15. translate([ x/2, -y/2, 0]) cylinder(r=3, h=z);
  16. translate([-x/2, y/2, 0]) cylinder(r=3, h=z);
  17. translate([ x/2, y/2, 0]) cylinder(r=3, h=z);
  18. }
  19. }
  20. difference() {
  21. union() {
  22. cube_round_corners(frame_x, frame_y, frame_z);
  23. cube_round_corners(frame_x, battery_y, battery_z + 3);
  24. }
  25. cube_centered(battery_x, battery_y, battery_z);
  26. translate([0, -baseplate_hole_distance/2, 0]) cylinder(d=3, h=3);
  27. translate([0, baseplate_hole_distance/2, 0]) cylinder(d=3, h=3);
  28. }