 - (defun c:tt ();tt(圆弧固定长度)
- (setq dd (Udist 7 "" "圆弧长度<输入或鼠标直接量取>" dd nil))
- (setq i -1)
- (if (setq ss (ssget '((0 . "arc"))))
- (while (setq s1 (ssname ss (setq i (1+ i))))
- (setq e (list s1 (vlax-curve-getStartPoint s1)))
- (command "lengthen" "t" dd e "")
- )
- )
- (princ)
- )
|