明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1393|回复: 1

用什么方法得到图形中最近的两个点呢?

[复制链接]
发表于 2006-9-1 09:25:00 | 显示全部楼层 |阅读模式
有什么好方法能实现:遍历图形后得到最近的两个点呢?
发表于 2006-9-1 09:36:00 | 显示全部楼层

好象只能用遍历来判断,没有更简单的方法了.

dim colAllPoint as collection

dim P1 as variant

dim P2 as variant

dim minP1 as variant

dim minP2 as variant

dim i as integer

dim j as integer

dim minDis as double

minDis=65500

for i=1 to colAllPoint.count

    p1=colAllPoint.item(i)

    for j= i+1 to colallpoint.count

          p2=colAllPoint.item(j)

          if  minDis>sqr((p1(0)-p2(0))^2+(p1(1)-p2(1))^2) then

                minDis=sqr((p1(0)-p2(0))^2+(p1(1)-p2(1))^2)

                minP1=P1

                minP2=P2

         endif

     next j

next i

这个代码是假设你取到了所有的点集

代码是直接写在贴上的没测试,大概就是这个意思,不知道还有没有更简单的方法.能利用ACD内部功能的.全当抛砖了.

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

本版积分规则

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

GMT+8, 2024-11-26 23:28 , Processed in 0.152346 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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