BreakerStandoff.scad 502 B

12345678910111213141516171819202122232425262728293031323334
  1. module standoff(){
  2. difference(){
  3. cylinder(h=125,r=10);
  4. }
  5. }
  6. module structure(){
  7. translate([0,0,3]){
  8. cube([150,125,6],true);
  9. }
  10. translate([-65,-50,6]){
  11. standoff();
  12. }
  13. translate([65,-50,6]){
  14. standoff();
  15. }
  16. translate([65,50,6]){
  17. standoff();
  18. }
  19. translate([-65,50,6]){
  20. standoff();
  21. }
  22. }
  23. difference(){
  24. structure();
  25. translate([65,50,-2]){
  26. cylinder(h=145,r=7);
  27. }
  28. }
  29. //scale([.1,.1,.1]){
  30. //}