明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2681|回复: 4

删除AcGePoint3dArray中的重复点

[复制链接]
发表于 2014-8-6 21:38:20 | 显示全部楼层 |阅读模式
本帖最后由 zdqwy19 于 2014-8-6 22:30 编辑

        自己用的一个删除AcGePoint3dArray中重复点的代码,采用双循环方法。
  1. //赵德强 2014.8.6 发
  2. //删除AcGePoint3dArray小于指定距离的点
  3. AcGePoint3dArray deletePoint(AcGePoint3dArray ptA,double minl)
  4. {
  5.   //删除重复点
  6.   //AcGeTol pan;
  7.   //pan.setEqualPoint(minl);
  8.   if(ptA.length()>0)
  9.   {
  10.     //双循环法删除重复元素,适应元素不太多
  11.     for(int i=0;i<ptA.length()-1;i++)
  12.     {  
  13.       for(int j=ptA.length()-1;j>i;j--)
  14.       {   
  15.         //if((ptA.at(i)).isEqualTo(ptA.at(j)))
  16.         if((ptA.at(i)).distanceTo(ptA.at(j))<=minl)
  17.         {  
  18.           ptA.removeAt(j);
  19.         }
  20.       }  
  21.     }
  22.   }
  23.   return ptA;
  24. }

      

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
发表于 2017-4-7 14:44:15 | 显示全部楼层
非常不错的资料,谢谢分享啊。
发表于 2018-4-2 17:50:48 | 显示全部楼层
谢谢分享源码
发表于 2020-2-25 09:09:53 来自手机 | 显示全部楼层
双循环好像没有利用set容器那么快速
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 05:55 , Processed in 0.168969 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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