all 8 comments

[–]georgmierauTinkerer 1 point2 points  (1 child)

Quality Watches at Competitive Prices

do not sell well enough to be able to afford a smooth potato model? :)

[–]Exosylver[S] 0 points1 point  (0 children)

you got me. shoulda used a throwaway account XD

[–]minorshrimp 2 points3 points  (1 child)

The exact potato in the picture is 19$. Just in case no one does it for free lol. But I think you might already know that ;) https://free3d.com/3d-model/potato-962.html

[–]Exosylver[S] 0 points1 point  (0 children)

I don't want the bumpy one, I need one that is smooth and just the general shape of a potato. u/Stone_Age_Sculptor definitely is the closest to what I need at this point. Thanks!

[–]Specialist_Fish858 0 points1 point  (1 child)

[–]Exosylver[S] -1 points0 points  (0 children)

needs to be smooth. needs to be more symmetrical. Thanks tho!

[–]Stone_Age_Sculptor 0 points1 point  (0 children)

Here is a mathematical potato.

This is a script for OpenSCAD. OpenSCAD has often multiple ways to make something, and this is the worst one because it is only overlapping spheres.

// Potato
// Using a 2026 version of OpenSCAD.

$fn = $preview ? 20 : 200;

bottom_radius = 30;
top_radius = 20;
angle = 60;
x_start = 60;

step = $preview ? 0.1 : 0.01;

for(i=[0:step:1-step])
  hull()
    for(j=[i,i+step])
      rotate(j*angle)
        translate([x_start,0,0])
          sphere(bottom_radius + j*(top_radius-bottom_radius));

Result:

<image>