Advertisement
jero987772

openscad incuadora

Jun 25th, 2018
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1.  
  2. difference(){
  3. //--estructura principal
  4. union() {
  5. //--techo
  6. translate ([-80,-30,70])
  7. cube ([140,60,2 ]);
  8. //--repisa 3 piso
  9. translate ([-80,-30,30])
  10. cube ([140,60, 2]);
  11. //--REPISA DE LA MITAD 2 PISO
  12. translate ([-80,-30,0])
  13. cube ([140,60, 2]);
  14. //--repiisa inferior
  15. translate ([-80,-30,-70])
  16. cube ([140,60,2 ]);
  17. //-- pared trasera
  18. translate ([-80,30,-70])
  19. color("orange")
  20. cube ([140,4,142]);
  21. //-- pared lado izquierdo
  22. translate ([-80,-30,-70])
  23. color("orange")
  24. cube ([2,60,142]);
  25. //-- 2 pared lado izquierdo mas derecho de bajo
  26. translate ([-55,-30,2])
  27. color("orange")
  28. cube ([2,60,68])
  29. //-- 2 pared lado izquierdo mas derecho de arriba
  30. translate ([-62,-30,30])
  31. color("orange")
  32. cube ([2,60,30]);
  33. }
  34. //--desparision de una esquina
  35. translate([60,-30,-72])
  36. rotate([0,0,75])
  37. cylinder (r =20/2 , h =144,$fn=3);
  38. }
  39. //--pilar de lado derecho
  40. module modulopilar() {
  41. color("orange")
  42. translate([60,-23,-70])
  43. rotate([0,0,225])
  44. cube ([10,2,142]);
  45. translate([44.5,-32,-70])
  46. color("orange")
  47. cube ([10,2,142]);
  48. translate([60,-23,-70])
  49. rotate([0,0,90])
  50. color("orange")
  51. cube ([10,2,142]);
  52. }
  53. modulopilar();
  54. //-- repisa 2
  55. translate ([-80,-30,15])
  56. cube ([26,60,2]);
  57. //-- repisa 4
  58. translate ([-80,-30,45])
  59. cube ([26,60,2]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement