Skip to content

Instantly share code, notes, and snippets.

@BrianEnigma
Created June 18, 2015 16:55
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 BrianEnigma/2cb7e5ba53f0ac35d70c to your computer and use it in GitHub Desktop.
Save BrianEnigma/2cb7e5ba53f0ac35d70c to your computer and use it in GitHub Desktop.
Tea Leaf Bowl
rotate_extrude($fn=100)
{
difference()
{
polygon(points = [
[0,0], // origin
[15,0], // base radius
[13,6], // bottom lip
[30,34], // top lip
[30,40], // top radius
[26,40], // top
[22,36], // inner diagonal
[0,36] // top center
], paths = [
[0,1,2,3,4,5,6,7]
]
);
translate(v = [0, 40, 0])
scale(v = [1, 1.5, 1])
circle(r = 22);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment