(defun c:ff (/ r a B)
(SETQ A (GETVAR "filletrad"))
(SETQ B (GETREAL (strcat "\n-->请输入圆角数值<" (vl-princ-to-string A) ">:" )))
(IF B
(SETVAR "FILLETRAD" B)
)
(command "fillet" PAUSE PAUSE);
(princ)
)
(defun c:ftt (/ r a B)
(SETQ A (GETVAR "filletrad"))
(SETQ B (GETREAL (strcat "\n-->请输入圆角数值<" (vl-princ-to-string A) ">:" )))
(IF B
(SETVAR "FILLETRAD" B)
)
(command "fillet" "U" PAUSE);
(princ)
)
(defun c:ftt (/ r a B)
(SETQ A (GETVAR "filletrad"))
(SETQ B (GETREAL (strcat "\n-->请输入圆角数值<" (vl-princ-to-string A) ">:" )))
(IF B
(SETVAR "FILLETRAD" B)
)
(command "fillet" "M" PAUSE);
(princ)
)