acad的标准命令
(command "circle" "ttr" )
这个对一些点很密集的多线和样条曲线可能会失灵。。。。 (defun c:tt ()
(if (and (setq s1 (entsel "\n选择一条曲线 :"))
(setq s2 (entsel "\n选择另一条曲线 :"))
(setq r (getdist "\n圆半径 :")))
(command "_.CIRCLE" "TTR" s1 s2 r)
)
(princ)
) ZZXXQQ 发表于 2012-4-15 15:25
(defun c:tt ()
(if (and (setq s1 (entsel "\n选择一条曲线 :"))
(setq s2 (entsel "\n选择 ...
谢谢啦。。。 看看高手是如何做到的
页:
1
[2]