My self-made 3D-printable designs, mainly in OpenSCAD
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.

700tvl-back.scad 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Created by:
  3. * Thomas Buck <xythobuz@xythobuz.de> in May 2016
  4. *
  5. * Licensed under the
  6. * Creative Commons - Attribution - Share Alike license.
  7. */
  8. // -----------------------------------------------------------
  9. width = 36;
  10. height = 36;
  11. depth = 1;
  12. hole_bottom = 2.8;
  13. hole_top = 3.8;
  14. hole_dist = 3.7;
  15. cut_height = 4.4;
  16. cut_width = 8;
  17. cut_dist_x = 20.4;
  18. cut_dist_y = 2;
  19. font = "Liberation Sans:style=Bold";
  20. text_depth = 0.4;
  21. string = "FPV";
  22. $fn = 20;
  23. // -----------------------------------------------------------
  24. difference() {
  25. cube([width, height, depth]);
  26. translate([width - hole_dist, hole_dist, 0])
  27. cylinder(d1 = hole_bottom, d2 = hole_top, h = depth);
  28. translate([hole_dist, height - hole_dist, 0])
  29. cylinder(d1 = hole_bottom, d2 = hole_top, h = depth);
  30. translate([cut_dist_x, cut_dist_y, 0])
  31. cube([cut_width, cut_height, depth]);
  32. translate([width / 2, height / 2, depth - text_depth])
  33. linear_extrude(height = text_depth)
  34. text(string, font = font, size = 10, halign = "center", valign = "center");
  35. }