Advertisement
Guest User

Untitled

a guest
Mar 29th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. SIX_INCH=152;
  2. OUTER_RIM_WIDTH=4;
  3. CUTTER_HEIGHT=12;
  4.  
  5. difference() {
  6. linear_extrude(2)
  7. circle(d=(SIX_INCH+(OUTER_RIM_WIDTH*2)), center=True, $fn=200);
  8. linear_extrude(3) circle(d=SIX_INCH, center=True, $fn=200);
  9. }
  10.  
  11. linear_extrude(CUTTER_HEIGHT) {
  12. difference() {
  13. circle(d=(SIX_INCH+(.6*2)), center=True, $fn=200);
  14. circle(d=SIX_INCH, center=True, $fn=200);
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement