明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1427|回复: 5

[请教]如何计算出图形中线段和圆弧的数量

[复制链接]
发表于 2006-2-27 22:49:00 | 显示全部楼层 |阅读模式
用选择集可以实现"如何计算出图形中线段和圆弧的数量"么
发表于 2006-2-27 22:57:00 | 显示全部楼层

dim n as integer,k as  integer

for n = 0 to thisdrawing.modelspace.count-1

       if thisdrawing.modelspace(n).entityname="AcDbLine" then

             k=k+1

      end if

next

msgbox   k

 楼主| 发表于 2006-2-28 16:26:00 | 显示全部楼层
谢谢,我自己试试,嘿嘿
发表于 2006-2-28 17:15:00 | 显示全部楼层
本帖最后由 作者 于 2006-2-28 17:44:44 编辑

在图元很多的时候历遍模型空间会很慢
用选择集解决要好些
  1. Sub test2()
  2. On Error Resume Next
  3. Dim ss As AcadSelectionSet
  4. Dim ft(0) As Integer, fd(0)
  5. ft(0) = 0: fd(0) = "line,arc"
  6. ThisDrawing.SelectionSets("TlsTest").Delete
  7. Set ss = ThisDrawing.SelectionSets.Add("TlsTest")
  8. ss.Select acSelectionSetAll, , , ft, fd
  9. MsgBox ss.Count
  10. End Sub
发表于 2006-3-5 09:40:00 | 显示全部楼层
斑竹说的好,能够用选择集的地方就不要用遍历,否则太慢.
发表于 2006-3-5 10:27:00 | 显示全部楼层
原来选择集是这么用的。谢谢。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-27 06:30 , Processed in 0.178590 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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