明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2054|回复: 4

请教多段线相交问题

[复制链接]
发表于 2006-9-5 20:15:00 | 显示全部楼层 |阅读模式

假设图内有大量的多段落线,任取其中一根,如何快速确定其它的多段线是否与所选这根相交?当然不能采用一根根试的办法

发表于 2006-9-5 20:40:00 | 显示全部楼层

先用GetBoundingBox返回对象边框的最大和最小点,再。。。

 楼主| 发表于 2006-9-5 21:03:00 | 显示全部楼层

"先用GetBoundingBox返回对象边框的最大和最小点,再。。。"

是用最大和最小点做框选,然后再一根根与框选到的实体比较吗?这样做只是缩小了范围,还有没有其它办法

发表于 2006-9-6 08:11:00 | 显示全部楼层
用这种方法可以做到的
Dim ssetObj As AcadSelectionSet
    Set ssetObj = ThisDrawing.SelectionSets.Add("TEST_SSET2")
    
    ' Add all the entities that lie within a fence to the selection set
    Dim mode As Integer
    Dim pointsArray(0 To 11) As Double
    mode = acSelectionSetFence
    pointsArray(0) = 28.2: pointsArray(1) = 17.2: pointsArray(2) = 0
    pointsArray(3) = -5: pointsArray(4) = 13: pointsArray(5) = 0
    pointsArray(6) = -3.3: pointsArray(7) = -3.6: pointsArray(8) = 0
    pointsArray(9) = 28: pointsArray(10) = -3: pointsArray(11) = 0
   
    ssetObj.SelectByPolygon mode, pointsArray
 楼主| 发表于 2006-9-9 16:31:00 | 显示全部楼层
没看明白,好象回答的不是我的问题
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-26 22:18 , Processed in 0.169563 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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