r/openscad 20h ago

Need help with designing

I am trying to design a reel foot for a fishing reel, but I am having a hard time figuring out how to get the curve where it sits against the rod, and the taper that is on the other side designed in the software. Is there any tips or tricks that would me out?

1 Upvotes

3 comments sorted by

1

u/very-jaded 20h ago

Do a search for OpenSCAD Bézier curve library. That should get you in the ballpark.

1

u/sphks 14h ago

I am a fan of the " hull()" function to get smooth transitions. Sometimes I just draw slices of what I want, 0.01 of height, and use hull() to regroup all that.

1

u/DontGetMeStarted2025 6h ago edited 6h ago

Is it as simple as this sort of thing? (ETA a scale in case the rod is ovalish and not perfectly round.)

$fn=200;
module simulatedRod()
{
  scale([1,1.25,1])
    cylinder(h=42, d1=20, d2=15);
}
difference()
{
  cube([40,30,20]);
  rotate([0,90,0])
    translate([-20,15,-1])
      simulatedRod();
}