Disable "Fillet" joining lines into a polyline
As it says in the title, looking to stop the seemingly default action of fillet joining the lines in question into a polyline.
Comments
-
Hello.
The behavior is similar to the one in Autocad: if one of the "lines" is a polyline, the result of filleting is a single polyline.
To get individual segments, an EXPLODE is required, resulting in lines.
If polylines are required, after exploding, use PEDIT with the option Multiple.
0 -
It won't do that unless one of the lines is a polyline.
0 -
You could make a custom version of the Fillet command, one that automatically explodes the new polyline.
(defun c:Fillet2 ()
(command "Fillet")
(while (> (getvar "cmdactive") 0) (command pause))
(command "Explode" "L")
)0 -
Thanks all, I was woindering if that was the case but it seemed to be doing it whe nI didn't think I had any polys in the line. I think what I'd done is use 2-point rectangles to quickly draw out piers on walls and not exploded them.
0