明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2327|回复: 2

[提问] 如何修改动态块内直线的长度?

[复制链接]
发表于 2013-5-31 15:33:54 | 显示全部楼层 |阅读模式
各位高手:
我把一条直线做成了动态块,两端节点可以移动。这样手动可以延长。
请问有什么方法可以用程序去修改延长?
我在块内查找到直线。并用下面的方法去修改了长度。长度变了。可动态节点依然没变。
(Vlax-Put-Property   item 'EndPoint  (Vlax-3d-Point '(100.0 0.0 0.0)))   )

(defun UpdatePts(EntName / );blk blkname endpoint get insertpt item pts startpoint)
(Setq blkname (Vlax-Get (setq get (Vlax-Ename->Vla-Object EntName)) 'Name ))
(setq insertPt (Vlax-Get get 'InsertionPoint ))
(setq blk (Vlax-Invoke-Method (Vlax-Get (Vlax-Get (Vlax-Get-Acad-Object) 'ActiveDocument) 'Blocks) 'Item blkname))

(vlax-for item blk
  (cond
   ((= "AcDbLine" (Vlax-Get item 'ObjectName ))
    (setq itt item)
(Vlax-Put-Property   item 'EndPoint  (Vlax-3d-Point '(100.0 0.0 0.0)))   )
  )
)
  
)
发表于 2014-5-17 23:43:43 | 显示全部楼层
我也正被这个问题困扰
发表于 2014-5-18 15:40:01 | 显示全部楼层
怎样用lisp程序取得动态块(这个动态块是图框)的长和宽
http://bbs.mjtd.com/forum.php?mo ... &fromuid=338795
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-23 18:46 , Processed in 0.201736 second(s), 29 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表