1. (defun c:rr()
    2. (setq ss1 (ssget ":s" '((0 . "line,Lwpolyline"))))
    3. (setq ss2 (ssget ":s" '((0 . "line,Lwpolyline"))))
    4. ;"FLATTEN" Select objects to convert to 2d
    5. (command "_.FILLET" "R" "200" "_.FILLET" ss1 ss2)
    6. (princ)
    7. )