Created
March 8, 2018 23:59
-
-
Save advorak/42243cd36e6ce5e07b6f79164c24b117 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//I want the larger end of this object: | |
translate([-73,0,0]) rotate([0,90,0]) cylinder(h=73, d1=16, d2=0, center=false, $fn=100); | |
// to resemble the corresponding end of this object: | |
intersection() { | |
translate([-73+16/2,0,0]) { | |
difference() { cylinder(h=16, d1=16, d2=16); translate([0,-10,0]) cube(73,16,16); } | |
} | |
translate([-73,0,0]) rotate([0,90,0]) cylinder(h=73, d1=16, d2=0, center=false, $fn=100); | |
} |
Author
advorak
commented
Mar 9, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment