明经CAD社区's Archiver
社区
›
编程申请
› 请各位大虾指点:如何全图平移?
mylious
发表于 2004-9-19 20:16:00
请各位大虾指点:如何全图平移?
全图坐标平移一个常数,最好用vb
谢谢
Student
发表于 2004-9-20 16:31:00
(defun c:py(/ x y ss)
(setq x(getreal "x平移:"))
(setq y(getreal "y平移:"))
(setq ss(ssget "x"))
(command "_.move" ss "" '(0 0) (list x y))
)
供参考。
页:
[1]
查看完整版本:
请各位大虾指点:如何全图平移?