首页 > Web开发 > 详细

autocad.net 利用linq获取矩形框内的块参照

时间:2014-03-17 03:02:49      阅读:591      评论:0      收藏:0      [点我收藏+]

利用linq获取在两点确定的矩形内的块参照 

Query syntax:

bubuko.com,布布扣
private ObjectId[] FindBlockReferencesInRectangle(Point3d pt1, Point3d pt2, Database db)
        {
            using (Transaction tr = db.TransactionManager.StartOpenCloseTransaction())
            using (Line line = new Line(pt1, pt2))
            {
                Extents3d bound = line.GeometricExtents;

                BlockTableRecord modelSpace = (BlockTableRecord)tr.GetObject(
                  SymbolUtilityServices.GetBlockModelSpaceId(db), OpenMode.ForRead);

                Func<ObjectId, bool> isBlockReference = (id =>
                    id.ObjectClass == RXClass.GetClass(typeof(BlockReference)));

                Func<ObjectId, bool> isInside = (id =>
                {
                    BlockReference br = (BlockReference)tr.GetObject(id, OpenMode.ForRead);
                    Extents3d exts = new Extents3d(bound.MinPoint, bound.MaxPoint);
                    exts.AddExtents(br.GeometricExtents);
                    return bound.IsEqualTo(exts);
                }); ;

                var blocks =
                    from ObjectId id in modelSpace
                    where isBlockReference(id) && isInside(id)
                    select id;

                return blocks.ToArray();
            }
        }
View Code

Extension methods syntax:

bubuko.com,布布扣
        private ObjectId[] FindBlockReferencesInRectangle(Point3d pt1, Point3d pt2, Database db)
        {
            using (Transaction tr = db.TransactionManager.StartOpenCloseTransaction())
            using (Line line = new Line(pt1, pt2))
            {
                Extents3d bound = line.GeometricExtents;

                BlockTableRecord modelSpace = (BlockTableRecord)tr.GetObject(
                    SymbolUtilityServices.GetBlockModelSpaceId(db), OpenMode.ForRead);

                Func<ObjectId, bool> isBlockReference = (id =>
                    id.ObjectClass == RXClass.GetClass(typeof(BlockReference)));

                Func<ObjectId, bool> isInside = (id =>
                {
                    BlockReference br = (BlockReference)tr.GetObject(id, OpenMode.ForRead);
                    Extents3d exts = new Extents3d(bound.MinPoint, bound.MaxPoint);
                    exts.AddExtents(br.GeometricExtents);
                    return bound.IsEqualTo(exts);
                });

                return modelSpace
                    .Cast<ObjectId>()
                    .Where(isBlockReference)
                    .Where(isInside)
                    .ToArray();
            }
        }
View Code

autocad.net 利用linq获取矩形框内的块参照,布布扣,bubuko.com

autocad.net 利用linq获取矩形框内的块参照

原文:http://www.cnblogs.com/swtool/p/SWTOOL_00007.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!