add avocado seed holder

This commit is contained in:
2019-12-18 20:47:37 +01:00
parent f973ea3128
commit 29c39615f8

18
avocado_seed_holder.scad Normal file
View File

@@ -0,0 +1,18 @@
thickness = 2;
toprad = 15;
bottomrad = 10;
radius = 25;
height = 30;
rotate_extrude(angle=360, $fn=360){
polygon([
[toprad, 0],
[bottomrad, height],
[bottomrad+thickness, height],
[toprad+thickness,thickness],
[radius-thickness,thickness],
[radius-thickness,height],
[radius, height],
[radius,0],
[toprad,0]]
);
}