[pzweng]路人 15:36:52
这个可以不用反应器
[pzweng]路人 15:37:59
(defun C:test ()
(defun getpt (/ pt)
(setq pt (getpoint))
(vla-addCIRCLE
(vla-get-modelspace
(vla-get-activedocument (vlax-get-acad-object))
)
(vlax-3d-point pt)
10
)
pt
)
(setq do t)
(command ".pline")
(while (> (getvar "CMDACTIVE") 0)
(command (getpt))
)
)
[pzweng]路人 15:38:30
(defun C:test ()
(defun getpt (/ pt)
(setq pt (getpoint))
(vla-addCIRCLE
(vla-get-modelspace
(vla-get-activedocument (vlax-get-acad-object))
)
(vlax-3d-point pt)
10
)
pt
)
(command ".pline")
(while (> (getvar "CMDACTIVE") 0)
(command (getpt))
)
)
[zhuquanmao]关中 15:39:32
excellink谁用过啊 最高版本只支持到2008 有没有高些的pj版本? |