Skip to content

Commit

Permalink
added draft freezering for creating iceballs
Browse files Browse the repository at this point in the history
  • Loading branch information
donnels committed Nov 29, 2024
1 parent 081bb45 commit ac76fd7
Show file tree
Hide file tree
Showing 2 changed files with 56,015 additions and 0 deletions.
13 changes: 13 additions & 0 deletions openscad/fritzring/Freez-ring.scad
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
$fn=100;
height=5;
innerD=54 ;
upperOuterD=73;
lowerOuterD=72.5;
module flange () {
difference(){
translate([0,0,.5]) cylinder(d2=lowerOuterD,d1=upperOuterD,h=height);
cylinder(d=innerD,h=height+1);

}
}
flange();
Loading

0 comments on commit ac76fd7

Please sign in to comment.