明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1379|回复: 3

取多条多段线长的lps

[复制链接]
发表于 2008-7-16 15:34:00 | 显示全部楼层 |阅读模式
本帖最后由 tll1923 于 2010-12-21 16:15 编辑

<p>取得多条多段线的长 按选取顺序写到一个文件里</p><p>自己试了半天也没编成 555</p><p>求高手帮忙  多谢了! </p>
 楼主| 发表于 2008-7-16 15:46:00 | 显示全部楼层

(defun c:tlen(/ curve tlen ss n f)
(vl-load-com)
(setq f (open (getfiled "" "" "" 1) "w"))
(setq ss (ssget '((0 . "CIRCLE,ELLIPSE,LINE,*POLYLINE,SPLINE,ARC"))))
(setq n 0)
(repeat (sslength ss)
(setq curve (vlax-ename->vla-object (ssname ss n)))
(setq tlen (vlax-curve-getdistatparam curve
(vlax-curve-getendparam curve)
)
)
(setq tlen (strcat (rtos tlen 2 5) "\n"))
(princ tlen f)
(setq n (1+ n))
)
(close f)
(princ)
)

自己编出来了!哈哈

发表于 2008-7-16 19:39:00 | 显示全部楼层
老毛就说了,自己动手,丰衣足食
发表于 2008-7-16 20:37:00 | 显示全部楼层

联系:ljttjl@ tom.com

您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2025-9-21 04:11 , Processed in 0.139239 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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