03 2024 档案
摘要:;取得3dpolyline的所有节点,因3dpolyline节点信息不信在子图元中,而entget函数只能获取POLYLINE主图元数据 ;因此要使用entnext函数依次获取所有VERTEX图元的数据,直到遇到SEQEND图元为止 (defun c:g-polyline-vertex () (se
阅读全文
摘要:;取得当前CAD文件名 (defun c:g-dwgname () (vl-load-com) (setq document (vla-get-activedocument (vlax-get-acad-object))) (setq dwgFullName (vlax-get-property d
阅读全文