明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2430|回复: 4

如何快速选择与一条多段线相交的线?

[复制链接]
发表于 2011-9-24 10:23:20 | 显示全部楼层 |阅读模式
      我想选择出某一图层中与一条多段线相交的多段线或二维多段线,该怎么写选择条件呢?
      我现在的方法是:
            Database db = HostApplicationServices.WorkingDatabase;
            Editor ed = Application.DocumentManager.MdiActiveDocument.Editor;
            TypedValue value1 = new TypedValue((int)DxfCode.Start, "*PolyLine");
            TypedValue value2 = new TypedValue((int)DxfCode.LayerName, Layername);
            TypedValue[] values = { value1, value2 };
            SelectionFilter sfilter = new SelectionFilter(values);
            PromptSelectionResult resSel = ed.SelectAll(sfilter);
            SelectionSet sSet = resSel.Value;
            ObjectId[] ids = sSet.GetObjectIds();

            Polyline polylineTemp = new Polyline(2);
            polylineTemp.AddVertexAt(0, p1, 0, 0, 0);
            polylineTemp.AddVertexAt(1, p2, 0, 0, 0);

             using (Transaction trans = db.TransactionManager.StartTransaction())
            {
                foreach(ObjectId sSetEntId in ids)
                {
                    Entity myEntity = (Entity)trans.GetObject(sSetEntId, OpenMode.ForRead);
                    if ((myEntity is Polyline) || (myEntity is Polyline2d))
                    {
                           //这里做myEntity 与polylineTemp 是否有交点的判断
                    }
                }
                trans.commit();
            }
发表于 2011-9-24 12:43:06 | 显示全部楼层
系统自带的EXPREES tools工具
不是有FS命令吗
发表于 2011-9-24 15:01:01 | 显示全部楼层
用SelectFence
发表于 2011-9-26 14:29:53 | 显示全部楼层
            Database db = HostApplicationServices.WorkingDatabase;
            Editor ed = Application.DocumentManager.MdiActiveDocument.Editor;
            Entity entity = null;
            DBObjectCollection dbCollection = new DBObjectCollection();
             TypedValue [] type=new  TypedValue[2];
              type[0] = new TypedValue((int)DxfCode.Start, "*PolyLine");
             type[1] = new TypedValue((int)DxfCode.LayerName, layerName);
            // 表示得到所有与多边形相交的对象,并且该对象所在layerName层的曲线
       PromptSelectionResult ents = ed.SelectFence(pts,filter);  //pts要相交的多段线的合         
        if (ents.Status == PromptStatus.OK)
            {
                SelectionSet ss = ents.Value;
                using (Transaction tran = db.TransactionManager.StartOpenCloseTransaction())
                {
                    foreach (ObjectId id in ss.GetObjectIds())
                    {
                        entity = tran.GetObject(id, OpenMode.ForWrite, true) as Entity;
                        if (entity != null)
                        {
                            dbCollection.Add(entity); //得到的对象放入集合中
                           }
                        tran.Commit();
                    }
                }
            }
希望能帮到你。。
发表于 2012-7-23 11:47:28 | 显示全部楼层
chengw 发表于 2011-9-26 14:29
Database db = HostApplicationServices.WorkingDatabase;
            Editor ed = Applicat ...

请问pts怎么定义啊~
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 16:35 , Processed in 0.170323 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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