i tried and it does not work, so it seems to be a bug, i can remember that it once did
edit: @Andrew_Turner i might have remembered it wrong, it very well could be that it does not fillet the surface but that it indeed just creates a curve to trim the surface then… sorry for the misleading thoughts.
[edit] It appears to work on separate lines, but not two edges of the same surface (below)… still experimenting…
[edit 2] FilletCorners works, but we may not want to use the same radius or fillet all corners.
If you’re talking about the Trim option of the Fillet command, it’s to trim the curves by the fillet arc.
Fillet only works on curves (or surface edges), AFAIK.
Actually I only know about Rhino 6.
Don’t know what Rhino 7 or Rhino 8 WIP can do … sorry.
But you can certainly trim the surface using the Trim command:
you have to draw the fillet arc(s) first by the Fillet command and then Trim the surface with the fillet arcs. ( Same for Chamfer using the lines ).
It’s not a one-shot thing, though.
Well … I also used to use a couple of raw, old VBScript scripts for that.
Here they are
sub main
pre=rhino.firstobject
ok=rhino.command("fillet t=n")
if not ok then exit sub
li=rhino.firstobject
if li=pre then exit sub
rhino.unselectallobjects
rhino.selectobject li
rhino.command"trim u=y"
rhino.deleteobject li
end sub
main
sub main
pre=rhino.firstobject
ok=rhino.command("chamfer t=n")
if not ok then exit sub
li=rhino.firstobject
if li=pre then exit sub
rhino.unselectallobjects
rhino.selectobject li
rhino.command"trim u=y"
rhino.deleteobject li
end sub
main