Advertisement
j0h

ifixit_tweezer_tips

j0h
Jun 13th, 2025 (edited)
528
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.76 KB | None | 0 0
  1. //IFixit plastic tipped tweezer replacement tips, and notes.
  2. module tw(){
  3. difference(){
  4. difference(){
  5. difference(){
  6.  
  7. difference(){
  8. cylinder(34,3.6,1.125);
  9. translate([-7,1,0])
  10. cube([15,15,35]);
  11. }
  12.  
  13. translate([-7,-16,0])
  14. cube([15,15,35]);
  15. }
  16.  
  17.  
  18. $fn=10;
  19. translate([0,1.5,10.0])
  20. rotate([90,0,0]) cylinder(3,0.75,0.75);
  21. }
  22. $fn=10;
  23. translate([0,1.5,1.5])
  24. #rotate([90,0,0]) cylinder(3,0.75,0.75);
  25. }
  26. }
  27. //// the ubutment piece...
  28. module ub(){
  29. difference(){
  30. translate([0,0,0])
  31. difference(){
  32.  cylinder(34,3.6,1.125);
  33. translate([-5,-6,0]) cube([9,15,14]);
  34. }
  35.  
  36.  
  37. translate([-4,0,0])
  38. cube([9,6,35]);
  39. }
  40. }
  41.  
  42. tw();
  43. ub();
  44.  
  45. // AT 2MM theres a hole in the center, and at 10mm holes are ~0.75mm radius
  46. // An ubutment ridge is 14mm up from base.
  47. // OK I fixxed it.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement