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.

bottom_corner_5mm.scad 784B

1234567891011121314151617181920212223242526272829303132333435363738
  1. $fn = 42;
  2. module prism(l, w, h) {
  3. polyhedron(
  4. points = [[0,0,0], [l,0,0], [l,w,0], [0,w,0], [0,w,h], [l,w,h]],
  5. faces = [[0,1,2,3],[5,4,3,2],[0,4,5,1],[0,3,4],[5,2,1]]
  6. );
  7. }
  8. difference() {
  9. union() {
  10. color("green")
  11. hull() {
  12. cube([60, 20, 5]);
  13. cube([20, 60, 5]);
  14. }
  15. color("red")
  16. translate([25, 7.5, 5])
  17. cube([35, 5, 1]);
  18. color("red")
  19. translate([7.5, 25, 5])
  20. cube([5, 35, 1]);
  21. }
  22. translate([20, 20 + 23, -1])
  23. rotate([0, -90, 180])
  24. prism(7, 23, 23);
  25. for (i = [10, 30, 50])
  26. translate([i, 10, -1])
  27. cylinder(d = 5.2, h = 8);
  28. for (i = [30, 50])
  29. translate([10, i, -1])
  30. cylinder(d = 5.2, h = 8);
  31. }