原始问题:
如何利用lisp将cad中块内对象的打印样式设置为bylayer
(setq ent (car (entsel))) ;选择一个实体
(setq lst (list ent)) ;将实体添加到列表中
(command "_chprop" lst "layer" "" "bylayer") ;设置打印样式为bylayer
如何利用lisp将cad中块内对象的打印样式设置为bylayer
(setq ent (car (entsel))) ;选择一个实体
(setq lst (list ent)) ;将实体添加到列表中
(command "_chprop" lst "layer" "" "bylayer") ;设置打印样式为bylayer
Prev:如何利用python开发cad