Last active
April 23, 2019 22:42
-
-
Save gabrielgrant/867b9399874bdb34e586ef1e54013942 to your computer and use it in GitHub Desktop.
This file contains 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
// all measurements in inches, because AMERICA | |
function main () { | |
// standard 4" sewer pipe | |
const innerRadius = 4/2; | |
const outerRadius = 4.215/2; | |
const length = 10 * 12; // by "3m" i assume you mean 10ft? | |
return difference( | |
circle({r: outerRadius, center: true}), | |
circle({r: innerRadius, center: true}) | |
).extrude({offset: [0, 0, length]}) | |
.rotateY(90); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment