Notifications
Clear all

How do I recreate this dish?  

  RSS
chapchair
(@chapchair)
New Member
How do I recreate this dish?

Any ideas of .stl files that exist to recreate a dish similar to this? My friend LOVED these and would love to gift her a 3D model of one! 

 

Thank you!! 

Posted : 10/02/2023 3:29 pm
Diem
 Diem
(@diem)
Illustrious Member

It's a fairly trivial shape to recreate 'though the overhangs might make for tricky printing - but in doing so you would almost certainly violate copyright; so don't do it.

Instead create something new inspired by, but definitely differing from the original.  For example:

Which is rendered by this parametric OpenSCAD script; about 5 minutes work:

// Example dish

sides=9;
innerrad=50;
outerrad=20;
height=10;
thick=3;

$fn=100;

difference(){
  union(){
    cylinder(r1=innerrad,r2=innerrad+height,h=height);
    for(a=[0:sides-1]){
      rotate([0,0,a*360/sides]){
        translate([innerrad,0,0]){
          cylinder(r1=outerrad-height,r2=outerrad,h=height);
        }
      }
    }
  }
  translate([0,0,thick]){
    cylinder(r1=innerrad-thick,r2=innerrad,h=height-thick);
  }
}

 

Cheerio,

Posted : 10/02/2023 5:45 pm
Share: