好啊干杯 Civil 3D有类似的命令,但据我所知,在vanilla Acad中没有。
如果可以肯定有一个函数可以做到这一点,因为我以前在工作中使用AutoCAD 2005,除非它像一个附加命令或其他什么。。。 我打赌这是一个附加组件。 这是我不久前写的一个简单的例子,它将在以前和世界之间切换。我从不需要多个旋转UCS,因此我总是将其保存为“A”,以便检查“A”是否存在,如果存在,则将其设置为“A”,而不是“前一个”(可以轻松修改/删除)。
(defun c:UT (/)
;; toggle between ucs world and previous ucs (if "A" exists, it will be set as current)
;; alan thompson 4.23.08
(if (eq (getvar 'worlducs) 1)
(if (tblsearch "ucs" "a")
(command "ucs" "r" "a")
(command "ucs" "p")
)
(command "ucs" "world")
)
(princ)
) 凉的为所有的帮助干杯。我去计算每个横移腿上的所有方位,所以一切都很好。。。
页:
1
[2]