明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1412|回复: 4

有关IntersectWith的问题

[复制链接]
发表于 2004-9-24 10:36:00 | 显示全部楼层 |阅读模式
Dim IntPoint As Variant
IntPoint = Obj1.IntersectWith(Obj2, acExtendNone) If VarType(IntPoint) <> vbEmpty Then ... End If VarType(IntPoint)无论在相交与否都返回8197(不相交时为0),请问为什么?
发表于 2004-9-24 11:10:00 | 显示全部楼层
if ubound(IntPoint)&gt;-1 then
发表于 2004-9-24 11:11:00 | 显示全部楼层
这与该函数的内部实现机制有关,如果两者不相交,是不是返回了一个空的数组?
发表于 2004-9-24 14:46:00 | 显示全部楼层
Dim a As AcadLine
Set a = ThisDrawing.ModelSpace(0)
Set b = ThisDrawing.ModelSpace(1)
c = a.IntersectWith(b, acExtendNone)
MsgBox UBound(c)
MsgBox IsArray(c) 试试这段代码,如果a,b不相交UBound(c)=-1 这在VB里是做不出来的,下界为0,上界为-1 ?但是有确实是一个数组
 楼主| 发表于 2004-9-28 08:28:00 | 显示全部楼层
感谢lzh741206! ubound(IntPoint)=-1---------------无交点 ubound(IntPoint)=2*n---------------n个交点 如果两直线重合,用IntersectWith返回-1。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-28 02:46 , Processed in 0.147932 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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