Skip to content

Instantly share code, notes, and snippets.

@campaul
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save campaul/e2de833cb8790b7a3777 to your computer and use it in GitHub Desktop.
Save campaul/e2de833cb8790b7a3777 to your computer and use it in GitHub Desktop.
Mason Jar Port Tube
function main() {
return union(
// The tube
difference(
cylinder({r:16, h:28, fn:100}),
cylinder({r:15, h:28, fn:100})
),
// The flange
difference(
cylinder({r:20, h:2, fn:100}),
cylinder({r:16, h:2, fn:100})
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment