少将
UID2029563
U币11
G币18981
技术0
主题4
精华0
阅读权限90
注册时间2012-10-23
最后登录2024-11-21
在线时间647 小时
少将
|
本帖最后由 ykuan 于 2015-12-8 06:50 编辑
這是我的程式,我要標一個尺寸是有固定公差的,執行沒問題,但是我如果只要標尺寸不要公差dimlinear還是會帶出公差
(defun C:qq02(/ tpenter tmenter temptp) (setq tpenter "0.05")
(setq tmenter "-0.02")
(setq temptp "2")
(command "dimtol" "on")
(command "dimlinear" "dimtdec" temptp "dimtp" tpenter "dimtm" tmenter)
(princ)
)
我的想法是家這一行(command "dimtol" "OFF")但是便沒公差了
(defun C:qq02(/ tpenter tmenter temptp)
(setq tpenter "0.05")
(setq tmenter "-0.02")
(setq temptp "2")
(command "dimtol" "on")
(command "dimlinear" "dimtdec" temptp "dimtp" tpenter "dimtm" tmenter)
(command "dimtol" "OFF")
(princ)
)
請問如何改善,謝謝!
|
|