FilletSrf command in Python

Hello,

I am trying to fillet surfaces in Python script in Rhino 8.

rs.Command("-FilletSrf Radius=0.3 Extend=no Trim=no BlendType=Deformable SelId " + str(surface) + " SelId " + str(cone))

The result of the script is marked as “A” on the image. Is there a parameter or a different way to tell the FilletSrf command in Python on which side of the surface I want to do a fillet? So the result will be the variant “B”?

Thanks for any advice.
Libor

Hi Libor - I’d use the rhinoscriptsyntax function
https://developer.rhino3d.com/api/RhinoScriptSyntax/#surface-FilletSurfaces

-Pascal

1 Like