Advertisement
sinned6915

4rawchiptech2

Sep 30th, 2020
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. //
  2. // include <threads_v2p1.scad>
  3. include<threads2.scad>;
  4. //Cap
  5.  
  6. $fn=240;
  7. module Cap() {
  8. difference(){
  9. union(){
  10. translate([0,0,1.5])cylinder(d=38, h=10, center=false);
  11. translate([0,0,0])cylinder(d1=36, d2=38, h=1.5, center=false);
  12. }
  13. translate([0,0,0])metric_thread (diameter=33, pitch=1.5, length=12, internal=true, n_starts=1);
  14. }
  15. }
  16.  
  17. module Neck(){
  18. difference(){
  19. union(){
  20. translate([0,0,0])metric_thread (diameter=33, pitch=1.5, length=12, internal=false, n_starts=1);
  21. translate([0,0,0]) cylinder(d=39, h=2, $fn=6, center=false);
  22. }
  23. translate([0,0,1.5])cylinder(d=30, h=15, center=false);
  24. }
  25. }
  26.  
  27. // Cap();
  28. // Neck ();
  29. difference() {
  30. union(){
  31. color("blue",1 )rotate ([0,0,0]) translate ([0,0,1.5]) Cap();
  32. color("orange",1) rotate ([0,0,0]) translate ([0,0,0]) Neck ();
  33. }
  34. translate ([-25,-50,-2]) cube(50,50,50);
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement