第四期视频回放

点击查看【bilibili】

第四期代码及课件下载地址

代码及课件下载地址

第四期直播内容文字版

Slide2.JPG
图1 本期课程内容一览

遍历方法介绍

引言

  1. 我们进行元素类型筛选时,一般来说需要使用ElementMSElementType属性对元素加以区别,其中对MicroStation软件中所有的元素均进行定义。
  1. public enum MSElementType
  2. {
  3. None = 0,
  4. CellHeader = 2,
  5. Line = 3,
  6. LineString = 4,
  7. GroupData = 5,
  8. Shape = 6,
  9. TextNode = 7,
  10. DigSetData = 8,
  11. DgnFileHeader = 9,
  12. LevSym = 10,
  13. Curve = 11,
  14. ComplexString = 12,
  15. ComplexShape = 14,
  16. Ellipse = 15,
  17. Arc = 16,
  18. Text = 17,
  19. Surfce = 18,
  20. Solid = 19,
  21. BsplinePole = 21,
  22. PointString = 22,
  23. Cone = 23,
  24. BsplineSurface = 24,
  25. BsurfBoundary = 25,
  26. BsplineKnot = 26,
  27. BsplineCurve = 27,
  28. BsplineWeight = 28,
  29. Dimension = 33,
  30. SharedCellDefinition = 34,
  31. SharedCellInstance = 35,
  32. Multiline = 36,
  33. Tag = 37,
  34. DgnStoreComponent = 38,
  35. DgnStoreHeader = 39,
  36. Type44 = 44,
  37. MicroStation = 66,
  38. RasterHeader = 87,
  39. RasterComponent = 88,
  40. RasterReference = 90,
  41. RasterReferenceComponent = 91,
  42. RasterHierarchy = 92,
  43. RasterHierarchyComponent = 93,
  44. RasterFrame = 94,
  45. TableEntry = 95,
  46. Table = 96,
  47. ViewGroup = 97,
  48. View = 98,
  49. LevelMask = 99,
  50. ReferenceAttachment = 100,
  51. MeshHeader = 105,
  52. MaxElements = 113
  53. }
  1. 对于MicroStation中的大多数元素,比如说普通实体,线元素,标签元素,弧元素等均可以被成功识别,但是对于某些元素,仅凭MSElementType属性无法对元素类型进行区分。在文件名为ElementType的案例中,模型中建立了较为常用的元素,我们首先获取模型中的元素并对元素进行遍历,通过输出结果我们可以发现,采用GetGraphicElements( )方法遍历时暴露出以下三个问题:
  1. 无法区分普通单元与智能实体——因为他们的元素类型均为CellHeader
  2. 无法区分参数化实体与参数化单元——因为他们的元素类型均为106
  3. 无法区分独立元素与内嵌于参数化实体中的元素

    1. public static void DistinguishElementType(string unparsed)//Case:ElementType
    2. {
    3. DgnModel dgnModel = Session.Instance.GetActiveDgnModel();//获得当前激活的模型
    4. ModelElementsCollection elems = dgnModel.GetGraphicElements();//获得当前模型中的所有图形元素
    5. string elemTypes = null;//声明字符串
    6. foreach (Element elem in elems)//遍历模型中的所有图形元素
    7. {
    8. elemTypes = elemTypes + "ElementId = " + elem.ElementId + " Element type = " + elem.ElementType + '\n';//输出图形元素的元素ID和元素类型
    9. }
    10. MessageBox.Show(elemTypes);//输出字符串结果
    11. }

    image.png
    图2 模型元素一览
    image.png
    图3 遍历元素与模型中元素结果对比

遍历区分智能实体与普通单元

  1. 若需要获得智能实体,那么仅凭MSElementType就只能获取到智能实体与普通单元的集合,在此基础上,我们可以使用元素的TypeName作进一步的区分,保证获得到的是智能实体。
  1. public static void DistinguishTypeofCellHeader(string unparsed)//Case:DistinguishCellHeader
  2. {
  3. DgnModel dgnModel = Session.Instance.GetActiveDgnModel();//获得当前激活的模型
  4. ModelElementsCollection elems = dgnModel.GetGraphicElements();//获得当前模型中的所有图形元素
  5. string elemTypes = "Smart Solid:\n";//声明字符串
  6. foreach (Element elem in elems)//遍历模型中的所有图形元素
  7. {
  8. if (elem.ElementType == MSElementType.CellHeader &&
  9. elem.TypeName.Contains("Smart Solid"))//根据元素类型为CellHeader和元素类型名称判断是否为智能实体
  10. {
  11. elemTypes = elemTypes + "ElementId = " + elem.ElementId + " Element type = " + elem.ElementType + '\n';//输出图形元素的元素ID和元素类型
  12. }
  13. }
  14. MessageBox.Show(elemTypes);//输出字符串结果
  15. }
  1. 在文件名为DistinguishCellHeader的案例中,模型内创建了两个智能实体与五个普通单元,采用元素中ElementTypeTypeName两个属性便可成功识别出智能实体。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644543983356-849a3365-c60c-43d1-9a89-7a00aae93c2c.png#clientId=uba57b9dc-d272-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=378&id=TQe0Q&margin=%5Bobject%20Object%5D&name=image.png&originHeight=472&originWidth=1053&originalType=binary&ratio=1&rotation=0&showTitle=false&size=50167&status=done&style=none&taskId=u797fdf8b-1e36-4830-8eec-2f93a43a9fd&title=&width=842.4)<br />**图4 模型元素一览**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644544083814-a20508fe-8b4e-469d-9865-9b904ad03b8d.png#clientId=uba57b9dc-d272-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=238&id=zmAG3&margin=%5Bobject%20Object%5D&name=image.png&originHeight=298&originWidth=646&originalType=binary&ratio=1&rotation=0&showTitle=false&size=25724&status=done&style=none&taskId=uaf1aab79-41b9-45ee-b71b-635a5e9085c&title=&width=516.8)<br />**图5 筛选结果**

遍历区分参数化实体与参数化单元

  1. 若需要获得参数化实体,那么仅凭MSElementType就只能获取到参数化实体与参数化单元的集合,在此基础上,我们可以使用元素的TypeName作进一步的区分,保证获得到的是参数化实体。
  1. public static void DistinguishTypeofExtendedHeader(string unparsed)//Case:DistinguishExtendedHeader
  2. {
  3. DgnModel dgnModel = Session.Instance.GetActiveDgnModel();//获得当前激活的模型
  4. ModelElementsCollection elems = dgnModel.GetGraphicElements();//获得当前模型中的所有图形元素
  5. string elemTypes = "Parametric Solid/Surface:\n";//声明字符串
  6. foreach (Element elem in elems)//遍历模型中的所有图形元素
  7. {
  8. if ((int)elem.ElementType == 106 &&
  9. elem.TypeName == "Parametric Solid/Surface")//根据元素类型为106和元素类型名称判断是否为参数化实体/面
  10. {
  11. elemTypes = elemTypes + "ElementId = " + elem.ElementId + " Element type = " + elem.ElementType + '\n';//输出图形元素的元素ID和元素类型
  12. }
  13. }
  14. MessageBox.Show(elemTypes);//输出字符串结果
  15. }
  1. 在文件名为DistinguishExtendedHeader的案例中建立了4个参数化单元与3个参数化实体,在这里便可以使用TypeName进行区分,获取参数化实体。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644548546592-a1744242-cec8-49d6-a373-b2a107bc8724.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=602&id=u6d69640f&margin=%5Bobject%20Object%5D&name=image.png&originHeight=752&originWidth=1756&originalType=binary&ratio=1&rotation=0&showTitle=false&size=151577&status=done&style=none&taskId=u65b3a4b7-a012-4504-9a84-1c6c65240ea&title=&width=1404.8)<br />**图6 模型元素一览**<br /> ![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644548712464-bf133ded-c481-4bac-b17d-4563480b6ba1.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=422&id=u89bffd12&margin=%5Bobject%20Object%5D&name=image.png&originHeight=527&originWidth=727&originalType=binary&ratio=1&rotation=0&showTitle=false&size=85522&status=done&style=none&taskId=ub5bf80f1-204c-4535-93aa-b40044cab05&title=&width=581.6)<br />**图7 筛选结果**

遍历区分独立实体与内嵌实体

  1. 在进行元素筛选遍历时,若参数化实体中使用普通实体进行切割,那么在元素集中,会将二者同时识别为实体,但是内嵌于参数化实体中的实体往往并不是我们所需要获得的,同时,内嵌实体的获得还会大大影响元素筛选的准确性。因此,如何区分独立实体与内嵌实体便显得十分重要。在这里,我们使用元素中的IsInvisible属性判断元素是否为内嵌元素。当前,我们可以看到IsInvisible是可读可写的,因此采用这种方法并不是十分严谨,后续我们还会介绍其他方法来如何更加有效的区分两者,这种方法对于一般情况下是适用的。
  1. public static void DistinguishNestingElements(string unparsed)//Case:ElementType
  2. {
  3. DgnModel dgnModel = Session.Instance.GetActiveDgnModel();//获得当前激活的模型
  4. ModelElementsCollection elems = dgnModel.GetGraphicElements();//获得当前模型中的所有图形元素
  5. string elemTypes = "Solid:\n";//声明字符串
  6. foreach (Element elem in elems)//遍历模型中的所有图形元素
  7. {
  8. if (elem.ElementType == MSElementType.Solid &&
  9. elem.IsInvisible == false)//根据元素类型为Solid和元素是否可见判断(注:该筛选方案不严谨,因有方法可修改元素是否可见)
  10. {
  11. elemTypes = elemTypes + "ElementId = " + elem.ElementId + " Element type = " + elem.ElementType + '\n';//输出图形元素的元素ID和元素类型
  12. }
  13. }
  14. MessageBox.Show(elemTypes);//输出字符串结果
  15. }
  1. 在文件名为ElementType的案例中我们使用以上方法,可以过滤掉参数化实体中内嵌的实体元素,获得独立的实体元素集。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644557674264-c3b9aadf-23a5-488a-9cb8-0bc21e59b7a0.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=779&id=uc7a6985e&margin=%5Bobject%20Object%5D&name=image.png&originHeight=779&originWidth=1496&originalType=binary&ratio=1&rotation=0&showTitle=false&size=163920&status=done&style=none&taskId=u0c603eea-efbf-45cb-b66c-dd79725e1c5&title=&width=1496)<br />**图8 模型元素一览**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644557616069-82178f42-2065-47ee-bf94-7c7de931ea7a.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=361&id=u0d18c401&margin=%5Bobject%20Object%5D&name=image.png&originHeight=361&originWidth=591&originalType=binary&ratio=1&rotation=0&showTitle=false&size=52915&status=done&style=none&taskId=ua963ac1f-f105-4eaf-865d-193e1f9c9d7&title=&width=591)<br />**图9 筛选结果**

选择集使用方法介绍

获得选择集中的元素

  1. 基于MicroStation中强大的选择集功能,可以直接使用选择集中图层,颜色,线形,元素类型,元素模板等对元素进行过滤,该方法介绍了如何读取到选择集中的元素。通过对于在选择集中获取到元素我们还可以根据业务的实际需求进一步的筛选元素,以达到获取目标元素集的最终目的。
  1. public static void QueryElemsInSelection(string unparsed)//Case:DistinguishNestingElement
  2. {
  3. ElementAgenda agenda = new ElementAgenda();//声明元素容器
  4. SelectionSetManager.BuildAgenda(ref agenda);//从当前选择集中获得元素
  5. string result = "The selected elements:\n";//声明字符串
  6. for (uint i = 0; i < agenda.GetCount(); i++)//遍历选择集中的所有元素
  7. {
  8. result = result + i + 1 + ": ElementId = " + agenda.GetEntry(i).ElementId + ", Element type = " + agenda.GetEntry(i).ElementType + "\n";//将元素ID与元素类型信息写入字符串中
  9. }
  10. MessageBox.Show(result);//输出字符串结果
  11. }
  1. 在文件名为DistinguishNestingElement的案例中,我首先使用选择集框选出我需要操作的元素,如下图所示,完成后执行上方代码,最终获得选择集中的元素。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644558105275-adda007f-78d8-4231-b8e1-4ae95b247765.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=696&id=u7b875880&margin=%5Bobject%20Object%5D&name=image.png&originHeight=696&originWidth=1446&originalType=binary&ratio=1&rotation=0&showTitle=false&size=63291&status=done&style=none&taskId=u75e43122-642d-4cb9-a3cf-96aa667bf76&title=&width=1446)<br />**图10 选择集选择状态**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644558310077-9c9c58c2-be0a-4922-bdb3-656343c7a45d.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=594&id=uffada329&margin=%5Bobject%20Object%5D&name=image.png&originHeight=594&originWidth=1495&originalType=binary&ratio=1&rotation=0&showTitle=false&size=58070&status=done&style=none&taskId=u2d676958-6859-4ea5-84ba-bc866a12e7a&title=&width=1495)<br />**图11 选择集遍历结果**

移除选择集中的元素

  1. 当我们在选择集中获得到一些不符合最终需求的元素时,我们可以首先将不符合需求的元素筛选出来,而后再将元素移出选择集。
  1. public static void ModifyElemsInSelection1(string unparsed)//Case:DistinguishNestingElement
  2. {
  3. DgnModel dgnModel = Session.Instance.GetActiveDgnModel();//获得当前激活的模型
  4. ElementAgenda agenda = new ElementAgenda();//声明元素容器
  5. SelectionSetManager.BuildAgenda(ref agenda);//从当前选择集中获得元素
  6. for (uint i = 0; i < agenda.GetCount(); i++)//遍历选择集中的所有元素
  7. {
  8. if (agenda.GetEntry(i).ElementType == MSElementType.Solid)//通过元素类型为Solid筛选出对应元素
  9. {
  10. SelectionSetManager.RemoveElement(agenda.GetEntry(i), dgnModel);//移除选择集中元素类型为Solid的元素
  11. }
  12. }
  13. }
  1. 在本案例中,我们首先使用框选的方式选中了参数化实体与普通实体,在代码中我们对元素类型为普通实体的元素进行过滤,对其进行移出选择集的操作,所得结果如下。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644559174752-3991c749-63f3-4ecc-acf1-b782a0699ed3.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=619&id=u58ce1ec3&margin=%5Bobject%20Object%5D&name=image.png&originHeight=619&originWidth=1106&originalType=binary&ratio=1&rotation=0&showTitle=false&size=150082&status=done&style=none&taskId=u23755396-678a-41b6-ac70-2f773758cb9&title=&width=1106)<br />**图12 代码执行前**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644559301062-a2729591-fdc1-4228-b5e2-150ba047f04c.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=576&id=u27c090e8&margin=%5Bobject%20Object%5D&name=image.png&originHeight=576&originWidth=1085&originalType=binary&ratio=1&rotation=0&showTitle=false&size=148626&status=done&style=none&taskId=uf38ab333-2244-4fe4-81b4-3bcc5d60722&title=&width=1085)<br />**图13 代码执行结果**

倒置选择集中的元素

  1. 当我们需要选择大部分而排除小部分相同属性的元素时,若选择大部分元素时,则十分浪费时间,那么如果我们可以选择小部分元素,对该属性元素进行反选,那么则会大幅度提高效率。 <br /> SelectionSetManager.InvertElement( )用于对相同属性类型的元素执行反向倒置选择的操作,即当模型中相同属性的元素为未被选中状态,则执行该方法后该类元素变为选中状态,反之则反。
  1. public static void ModifyElemsInSelection2(string unparsed)//Case:DistinguishNestingElement
  2. {
  3. DgnModel dgnModel = Session.Instance.GetActiveDgnModel();//获得当前激活的模型
  4. ModelElementsCollection elems = dgnModel.GetGraphicElements();//获得当前模型中的所有图形元素
  5. foreach (Element elem in elems)//遍历选择集中的所有元素
  6. {
  7. if (elem.ElementType == MSElementType.Solid)//通过元素类型为Solid筛选出对应元素
  8. {
  9. SelectionSetManager.InvertElement(elem, dgnModel);//倒置元素类型为Solid的元素
  10. }
  11. }
  12. }
  1. 在本案例中,首先在模型中选择了部分参数化实体与普通实体,在执行代码后,对于条件过滤中的普通实体执行选择集倒置操作,因此原本被选中的普通实体变为未选中状态,而参数化实体保持不变。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644559762824-7ab5ce1a-d27d-4a8f-a335-b74158c36fe5.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=784&id=ub250c005&margin=%5Bobject%20Object%5D&name=image.png&originHeight=784&originWidth=1299&originalType=binary&ratio=1&rotation=0&showTitle=false&size=201237&status=done&style=none&taskId=ud864aae6-f29b-4987-89a4-2b4165a244a&title=&width=1299)<br />**图14 代码执行前**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644559795589-6031cde9-21ea-4944-a677-62bdceb7ef1b.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=761&id=u16b96e4c&margin=%5Bobject%20Object%5D&name=image.png&originHeight=761&originWidth=1298&originalType=binary&ratio=1&rotation=0&showTitle=false&size=201509&status=done&style=none&taskId=udd9bc84f-76f1-4a22-916c-51d5b6c9e1e&title=&width=1298)<br />**图15 代码执行结果**

替换选择集中的元素

  1. 当我们在做管线设计时,如果发现管线某个位置与结构或建筑设计的构件存在碰撞,需要高亮由多个元素构成的整条管线,那么就有可能涉及到将选择的部分构件替换为其他构件。 <br /> SelectionSetManager.ReplaceWithElement( )方法主要用于将选择集中的元素集替换为其他元素,其表现于剔除选择集中的元素并添加用于替换的元素到选择集中。
  1. public static void ModifyElemsInSelection3(string unparsed)//Case:DistinguishNestingElement
  2. {
  3. DgnModel dgnModel = Session.Instance.GetActiveDgnModel();//获得当前激活的模型
  4. double uorPerMas = Session.Instance.GetActiveDgnModel().GetModelInfo().UorPerMaster;//分辨率单位转换为主单位
  5. ElementAgenda agenda = new ElementAgenda();//声明元素容器
  6. SelectionSetManager.BuildAgenda(ref agenda);//从当前选择集中获得元素
  7. if (agenda.GetCount() > 0)
  8. {
  9. DisplayableElement displayableElem = agenda.GetEntry(0) as DisplayableElement;//获得选择集元素对应的父类元素
  10. displayableElem.GetTransformOrigin(out DPoint3d elemLoc);//从该父类中获得选中元素的定位坐标
  11. EllipseElement ellipse = new EllipseElement(dgnModel, null, elemLoc, 10 * uorPerMas, 5 * uorPerMas, DMatrix3d.Identity);//声明椭圆元素
  12. ellipse.AddToModel();//将椭圆元素添加到模型中
  13. BentleyStatus status = SelectionSetManager.ReplaceWithElement(ellipse, dgnModel);//将该元素的选中状态替换为椭圆选中
  14. }
  15. }
  1. 在本案例中,首先创建了一个椭圆元素,然后将椭圆元素放置在选择集中索引为0的插入点处,并且将选择集中的元素替换为新创建的椭圆元素。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644560696976-a97f8620-ca83-4dad-8b33-287a258a07b3.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=782&id=u8194988e&margin=%5Bobject%20Object%5D&name=image.png&originHeight=782&originWidth=1295&originalType=binary&ratio=1&rotation=0&showTitle=false&size=203184&status=done&style=none&taskId=u64b0781d-746c-4eb2-ac54-777bd491e6b&title=&width=1295)<br />**图16 代码执行前**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644560723740-5d986984-d960-4a73-8768-37977f113c29.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=784&id=u8a0baceb&margin=%5Bobject%20Object%5D&name=image.png&originHeight=784&originWidth=1284&originalType=binary&ratio=1&rotation=0&showTitle=false&size=195363&status=done&style=none&taskId=u41d024fc-c1ca-4705-8697-bfc56408fd7&title=&width=1284)<br />**图17 代码执行后**

添加选择集中的元素

  1. 若我们需要通过代码的方式获得模型中指定属性的元素集,除了使用MicroStation内置的选择集,我们也可以根据过滤条件筛选出符合要求的元素集,并添加到选择集中供下一步操作。SelectionSetManager.AddElement( )的功能为将元素添加到选择集中。
  1. public static void AddElemsInSelection(string unparsed)//Case:ElementType
  2. {
  3. DgnModel dgnModel = Session.Instance.GetActiveDgnModel();//获得当前激活的模型
  4. ElementAgenda agenda = new ElementAgenda();//声明元素容器
  5. SelectionSetManager.EmptyAll();//清空选择集(主要为了防止因前期选择部分元素造成的选择集项目混乱)
  6. ModelElementsCollection elems = dgnModel.GetGraphicElements();//获得当前模型中的所有图形元素
  7. foreach (Element elem in elems)//遍历模型中的所有元素
  8. {
  9. if (elem.ElementType == MSElementType.Solid)//通过元素类型为Solid筛选出对应元素
  10. {
  11. SelectionSetManager.AddElement(elem, dgnModel);//将筛选后的元素写入模型
  12. }
  13. }
  14. }
  1. 在本案例中,首先对选择集进行清空操作,以防若选择集中存在元素造成误导,然后对模型中的元素进行遍历,将元素属性为普通实体的元素添加到选择集中。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644561105733-b9065682-29c7-4040-b032-78a3275f2cea.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=763&id=u99a5bcba&margin=%5Bobject%20Object%5D&name=image.png&originHeight=763&originWidth=1485&originalType=binary&ratio=1&rotation=0&showTitle=false&size=76180&status=done&style=none&taskId=u32859027-6f69-44bd-a45a-d6df52d6a10&title=&width=1485)<br />**图18 代码执行前**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644561133794-b0aad6f9-7618-4338-92b6-71ea1c81e00b.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=758&id=ua50c048e&margin=%5Bobject%20Object%5D&name=image.png&originHeight=758&originWidth=1483&originalType=binary&ratio=1&rotation=0&showTitle=false&size=132931&status=done&style=none&taskId=u10ce77d6-8c8b-4ca8-bf23-1ba44557740&title=&width=1483)<br />**图19 代码执行后**

扫描使用方法介绍

  1. 若我们需要根据元素自身或工程属性进行遍历检索,随着模型中元素数量的增多往往会大幅度增加遍历所需要的时间。而扫描工具不仅可以规定扫描区域,也可以指定遍历元素的类型,从而将原本模型中的全部元素的检索变为指定区域,指定元素类型的检索,大幅度提高效率。
  1. public static void FilterByScanCriteria(string unparsed)//Case:ScanCriteriaCase
  2. {
  3. DgnModel dgnModel = Session.Instance.GetActiveDgnModel();//获得当前激活的模型
  4. double uorPerMas = Session.Instance.GetActiveDgnModel().GetModelInfo().UorPerMaster;//分辨率单位转换为主单位
  5. ScanCriteria sc = new ScanCriteria();//声明扫描标准
  6. sc.SetModelRef(dgnModel);//设置扫描目标模型
  7. sc.SetModelSections(DgnModelSections.GraphicElements);//设置扫描部分(本案例中仅扫描图形元素)
  8. BitMask elemTypeMask = new BitMask(false);//声明可变位数组
  9. elemTypeMask.Capacity = 128;//设置数组容量
  10. elemTypeMask.ClearAll();
  11. // Element Type Number - 1 = BitMask Index
  12. elemTypeMask.SetBit(18, true); // Element Type = Solid (Not SmartSolid), or (int)MSElementType.Solid - 1 设置筛选元素类型
  13. sc.SetElementTypeTest(elemTypeMask);//将可变位数组应用于扫描标准
  14. ScanRange range = new ScanRange((long)(99439.621 * uorPerMas), (long)(79738.341 * uorPerMas), 0, (long)(99701.215 * uorPerMas), (long)(79946.173 * uorPerMas), 0);//设置扫描范围
  15. sc.SetRangeTest(range);//将扫描范围应用于扫描标准 注:若无范围要求不进行该项设置即可
  16. string result = "The result of scan is:\n";//声明字符串
  17. ScanDelegate scanDelegate = (Element elem, DgnModelRef modelRef) =>//声明扫描委托
  18. {
  19. //若扫描到符合条件的目标后执行的操作
  20. result = result + "ElmentId = " + elem.ElementId + ", element type = " + elem.TypeName + '\n';
  21. return StatusInt.Success;//返回成功
  22. };
  23. sc.Scan(scanDelegate);//执行扫描
  24. MessageBox.Show(result);//将字符串结果输出到对话框
  25. }
  1. 代码中首先声明了扫描标准,并设置扫描模型中图形元素,设置扫描元素类型及扫描区域后声明扫描委托,获得符合条件的元素。在本案例中,我们扫描的是图中Shape元素围城的区域,从最终的输出结果表明,扫描会在设置的范围框中针对元素属性条件为普通实体进行元素的过滤,最终获得指定区域内属性为普通实体的元素集合。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644562203576-5ee524fa-7d5f-4d13-b30d-2b503ec612f6.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=405&id=u728ee07b&margin=%5Bobject%20Object%5D&name=image.png&originHeight=770&originWidth=1290&originalType=binary&ratio=1&rotation=0&showTitle=false&size=118298&status=done&style=none&taskId=u1ebd1673-4efc-43d7-af45-638431e3eba&title=&width=678)<br />**图20 代码执行前**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644562350098-6fd40b36-ef1d-4c25-aba1-b35ec9224e8a.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=485&id=u34810e92&margin=%5Bobject%20Object%5D&name=image.png&originHeight=485&originWidth=678&originalType=binary&ratio=1&rotation=0&showTitle=false&size=53113&status=done&style=none&taskId=uf365ed94-b593-4c1f-ae74-f996e7f2aaa&title=&width=678)<br />**图21 代码执行后**

围栅使用方法介绍

使用元素创建围栅

该方法类似于使用MicroStation软件中的选择元素建立围栅的方法,确定构造围栅的元素后,他会根据选取的元素构造出一个垂直于该元素的三维围栅体,获得该区域内的所有元素。
image.png
图22 MicroStation中使用元素建立围栅功能

  1. public static void CreateFenceByElement(string unparsed)//Case:FenceClipByElement
  2. {
  3. DgnModelRef dgnModelRef = Session.Instance.GetActiveDgnModelRef();//获得当前的模型空间/参照空间 注:DgnModelRef是一个基类,DgnModel和DgnAttachment都派生于这个基类
  4. DgnModel dgnModel = Session.Instance.GetActiveDgnModel();//获得当前激活的模型空间
  5. Viewport view = Session.GetActiveViewport();//获得当前视图信息
  6. double uorPerMas = Session.Instance.GetActiveDgnModel().GetModelInfo().UorPerMaster;//分辨率单位转换为主单位
  7. #region Create complex shape element
  8. DPoint3d p1 = new DPoint3d(-10*uorPerMas,0,0);//声明线串元素端点
  9. DPoint3d p2 = new DPoint3d(-10 * uorPerMas, 260*uorPerMas,0);
  10. DPoint3d p3 = new DPoint3d(110*uorPerMas,260*uorPerMas,0);
  11. DPoint3d p4 = new DPoint3d(110*uorPerMas,110*uorPerMas,0);
  12. DPoint3d[] pos = { p1,p2,p3,p4 };//声明端点集
  13. LineStringElement lineString = new LineStringElement(dgnModel,null,pos);//声明线串元素
  14. DPoint3d centerPo = new DPoint3d(0,100*uorPerMas,0);//声明弧元素的圆心
  15. ArcElement arc = new ArcElement(dgnModel,null, centerPo,110*uorPerMas,110*uorPerMas,DMatrix3d.Identity, 0, -Angle.PI.Radians / 2);//声明弧元素
  16. ComplexShapeElement complexShape = new ComplexShapeElement(dgnModel,null);//声明复杂形元素
  17. complexShape.AddComponentElement(lineString);//将子构件添加到复杂元素中
  18. complexShape.AddComponentElement(arc);
  19. complexShape.AddComponentComplete();//子构件添加完成
  20. #endregion
  21. if (StatusInt.Success == FenceManager.DefineByElement(complexShape, view))//使用元素围成的区域声明围栅
  22. {
  23. FenceParameters fenceParams = new FenceParameters(dgnModelRef, DTransform3d.Identity);//声明围栅信息
  24. FenceManager.InitFromActiveFence(fenceParams, false, false, FenceClipMode.None);
  25. /*
  26. * 使用围栅信息初始化围栅
  27. * fenceParameters:围栅信息
  28. * overlap:若需囊括部分包含的元素则输入true
  29. * doClip:若需修剪操作则输入true
  30. * allowClipFlag:若需要在原始元素上剪切则输入FenceClipMode.Original,若需要在新声明的元素上剪切则输入FenceClipMode.Copy
  31. */
  32. ElementAgenda eAgenda = new ElementAgenda();//声明元素容器
  33. DgnModelRef[] modelRefList = new DgnModelRef[1];//设置需要声明围栅的模型空间
  34. modelRefList[0] = dgnModelRef;//设置模型空间
  35. FenceManager.BuildAgenda(fenceParams, eAgenda, modelRefList, false, false, false);
  36. /*
  37. * 使用围栅信息获得符合要求的元素集
  38. * fenceParameters:围栅信息
  39. * elementAgenda:符合要求的元素集
  40. * modelRefList:声明围栅的模型空间
  41. * modifyOrig:是否修改原始元素
  42. * allowLocked:是否允许锁定元素
  43. * callAsynch:是否需要调用异步
  44. */
  45. string result = "Result:\n";//声明字符串
  46. for (uint i = 0; i < eAgenda.GetCount(); i++)//遍历元素容器中的元素
  47. {
  48. Element element = eAgenda.GetEntry(i);//获得元素容器中的元素
  49. result = result + "ElementId = " + element.ElementId + '\n';//将元素ID写入模型
  50. }
  51. result = result + "Total count: " + eAgenda.GetCount();//输出元素个数
  52. MessageBox.Show(result);//将字符串输出到对话框中
  53. }
  54. }
  1. 在文件名为FenceClipByElement的案例中,预先建立了四个实体元素,然后我们首先使用形元素创建围栅的轮廓并定义围栅,规定只有围栅完全包含元素才能获取元素(InitFromActiveFence( )中第二个参数控制),最终获得完全包含在围栅内的元素。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644563190148-3daddbbd-4d48-4812-9ede-10464e2d5e86.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=402&id=u2d57daa8&margin=%5Bobject%20Object%5D&name=image.png&originHeight=563&originWidth=959&originalType=binary&ratio=1&rotation=0&showTitle=false&size=28741&status=done&style=none&taskId=u4a13fc79-d5bb-48a1-af54-50dc36c7a13&title=&width=685)<br />**图23 代码执行前**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644563297295-b5527886-b140-4653-8ffa-4872a753ec9a.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=376&id=uba1731d1&margin=%5Bobject%20Object%5D&name=image.png&originHeight=376&originWidth=695&originalType=binary&ratio=1&rotation=0&showTitle=false&size=36406&status=done&style=none&taskId=u795933b0-3ca5-4f68-abd9-de2f6af3bac&title=&width=695)<br />**图24 围栅检索元素结果**

使用点集创建围栅

  1. 该方法类似于MicroStation中围栅功能中通过绘制创建围栅的方法。与前者不同的是,前者视角对于围栅的建立没有影响,他只根据创建元素的垂直法线建立围栅;而该方法高度依赖视角的变化,若视角不同,则获取到围栅内元素的结果也会不同。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644563584251-5924e896-0faf-410c-8043-05032e2a0bae.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=588&id=ud3969749&margin=%5Bobject%20Object%5D&name=image.png&originHeight=588&originWidth=1064&originalType=binary&ratio=1&rotation=0&showTitle=false&size=43175&status=done&style=none&taskId=u70616d09-2807-4774-bdb1-c411c9ebb6d&title=&width=1064)<br />**图25 MicroStation中使用绘制方式建立围栅功能**
  1. public static void CreateFenceByPoints(string unparsed)//Case:FenceClipByPoints
  2. {
  3. DgnModelRef dgnModelRef = Session.Instance.GetActiveDgnModelRef();//获得当前的模型空间/参照空间 注:DgnModelRef是一个基类,DgnModel和DgnAttachment都派生于这个基类
  4. Viewport view = Session.GetActiveViewport();//获得当前视图信息
  5. double uorPerMas = Session.Instance.GetActiveDgnModel().GetModelInfo().UorPerMaster;//分辨率单位转换为主单位
  6. DPoint3d p1 = new DPoint3d(-10 * uorPerMas, 0,-130 * uorPerMas);//声明围栅坐标点
  7. DPoint3d p2 = new DPoint3d(300 * uorPerMas, 0, -130 * uorPerMas);
  8. DPoint3d p3 = new DPoint3d(300 * uorPerMas, 0,-10 * uorPerMas);
  9. DPoint3d p4 = new DPoint3d(130 * uorPerMas,0, -10 * uorPerMas);
  10. DPoint3d p5 = new DPoint3d(130 * uorPerMas, 0, 130 * uorPerMas);
  11. DPoint3d p6 = new DPoint3d(-10 * uorPerMas, 0, 130 * uorPerMas);
  12. DPoint3d[] pos = { p1, p2, p3, p4,p5,p6 };//使用端点声明端点集
  13. if (StatusInt.Success == FenceManager.DefineByPoints(pos, view))//使用端点声明
  14. {
  15. FenceParameters fenceParams = new FenceParameters(dgnModelRef, DTransform3d.Identity);//声明围栅信息
  16. FenceManager.InitFromActiveFence(fenceParams, true, false, FenceClipMode.None);//使用围栅信息初始化围栅
  17. ElementAgenda eAgenda = new ElementAgenda();//声明元素容器
  18. DgnModelRef[] modelRefList = new DgnModelRef[1];//设置需要声明围栅的模型空间
  19. modelRefList[0] = dgnModelRef;//设置模型空间
  20. FenceManager.BuildAgenda(fenceParams, eAgenda, modelRefList, false, false, false);//使用围栅信息获得符合要求的元素集
  21. string result = "Result:\n";//声明字符串
  22. for (uint i = 0; i < eAgenda.GetCount(); i++)//遍历元素容器中的元素
  23. {
  24. Element element = eAgenda.GetEntry(i);//获得元素容器中的元素
  25. result = result + "ElementId = " + element.ElementId + '\n';//将元素ID写入模型
  26. }
  27. result = result + "Total count: " + eAgenda.GetCount();//输出元素个数
  28. MessageBox.Show(result);//将字符串输出到对话框中
  29. }
  30. }
  1. 在文件名为FenceClipByPoints的案例中,上方四个实体元素是参照其他模型的元素,下方四个实体元素为该模型中的元素,首先使用点集构建出围栅轮廓,然后围栅会以视图方向为围栅法线方向构建围栅并获得囊括在围栅内的元素集合。在定义围栅时InitFromActiveFence( )中第二个参数设为真,可以看到就算是部分囊括的元素同样会被添加到元素集合中。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644563911779-6b0f1c11-ac22-4a06-96be-6891ecc6a6d3.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=452&id=uaefb8f43&margin=%5Bobject%20Object%5D&name=image.png&originHeight=607&originWidth=801&originalType=binary&ratio=1&rotation=0&showTitle=false&size=34237&status=done&style=none&taskId=uebd3262e-5556-4cc8-8adf-99c30b10b37&title=&width=596)<br />**图26 代码执行前**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644564001471-d5149dac-8e62-4a99-b26a-f09d4fcfb526.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=465&id=uefa3758b&margin=%5Bobject%20Object%5D&name=image.png&originHeight=631&originWidth=819&originalType=binary&ratio=1&rotation=0&showTitle=false&size=73945&status=done&style=none&taskId=ue785ee1d-0946-4762-8c9c-a35ec9d4845&title=&width=603)<br />**图27 围栅检索元素结果1**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644564057591-53ab2b7a-46f2-445a-bfbe-c28bdebc3dd8.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=410&id=uaf442596&margin=%5Bobject%20Object%5D&name=image.png&originHeight=655&originWidth=972&originalType=binary&ratio=1&rotation=0&showTitle=false&size=73936&status=done&style=none&taskId=u9732c061-9676-495b-a7fd-9771abe28c1&title=&width=608)<br />**图28 围栅检索元素结果2**

检索并复制围栅内元素

  1. 当我们需要对围栅内的元素进行复制,便需要首先创建围栅,而后执行元素的复制操作。需要注意的是,在本案例中使用到的围栅内元素复制方法,不仅适用于模型内元素,同样适用于参考模型元素。
  1. public static void CopyFenceByPoints(string unparsed)//Case:FenceClipByPoints
  2. {
  3. DgnModelRef dgnModelRef = Session.Instance.GetActiveDgnModelRef();//获得当前的模型空间/参照空间 注:DgnModelRef是一个基类,DgnModel和DgnAttachment都派生于这个基类
  4. Viewport view = Session.GetActiveViewport();//获得当前视图信息
  5. double uorPerMas = Session.Instance.GetActiveDgnModel().GetModelInfo().UorPerMaster;//分辨率单位转换为主单位
  6. DPoint3d p1 = new DPoint3d(-10 * uorPerMas, 0, -130 * uorPerMas);//声明围栅坐标点
  7. DPoint3d p2 = new DPoint3d(300 * uorPerMas, 0, -130 * uorPerMas);
  8. DPoint3d p3 = new DPoint3d(300 * uorPerMas, 0, -10 * uorPerMas);
  9. DPoint3d p4 = new DPoint3d(130 * uorPerMas, 0, -10 * uorPerMas);
  10. DPoint3d p5 = new DPoint3d(130 * uorPerMas, 0, 130 * uorPerMas);
  11. DPoint3d p6 = new DPoint3d(-10 * uorPerMas, 0, 130 * uorPerMas);
  12. DPoint3d[] pos = { p1, p2, p3, p4, p5, p6 };//使用端点声明端点集
  13. if (StatusInt.Success == FenceManager.DefineByPoints(pos, view))//使用端点声明
  14. {
  15. FenceParameters fenceParams = new FenceParameters(dgnModelRef, DTransform3d.Identity);//声明围栅信息
  16. FenceManager.InitFromActiveFence(fenceParams, true, false, FenceClipMode.Copy);//使用围栅信息初始化围栅
  17. ElementAgenda eAgenda = new ElementAgenda();//声明元素容器
  18. DgnModelRef[] modelRefList = new DgnModelRef[1];//设置需要声明围栅的模型空间
  19. modelRefList[0] = dgnModelRef;//设置模型空间
  20. FenceManager.BuildAgenda(fenceParams, eAgenda, modelRefList, false, false, false);//使用围栅信息获得符合要求的元素集
  21. for (uint i = 0; i < eAgenda.GetCount(); i++)//遍历元素容器中的元素
  22. {
  23. using (ElementCopyContext copyContext = new ElementCopyContext(dgnModelRef))//复制元素
  24. {
  25. Element element = eAgenda.GetEntry(i);//获得元素容器中的元素
  26. copyContext.DoCopy(element);//将元素复制到指定模型中
  27. }
  28. }
  29. }
  30. }
  1. 在文件名为FenceClipByPoints的案例中,上方四个实体元素是引用参照其他模型中的元素,下方四个实体元素为该模型中的元素,使用点集创建围栅的方式,对围栅内的元素进行复制操作,代码执行后可以发现无论是模型中还是参照中的元素都被顺利复制到当前模型中。注意:复制元素的目标模型由ElementCopyContext copyContext = new ElementCopyContext(dgnModelRef)中的入参模型确定,若您需要复制到其他模型中,修改该入参即可实现。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644565634432-7f3c8709-0cc9-4815-96b8-feab40462a10.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=748&id=uea3d85ad&margin=%5Bobject%20Object%5D&name=image.png&originHeight=748&originWidth=1171&originalType=binary&ratio=1&rotation=0&showTitle=false&size=184968&status=done&style=none&taskId=ua3914a03-8bbc-4e93-a0d3-5570c0fa879&title=&width=1171)<br />**图29 代码执行前**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644565657554-8c331afa-e0f5-4b9c-9f31-c53e26000050.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=628&id=u64975ff0&margin=%5Bobject%20Object%5D&name=image.png&originHeight=628&originWidth=835&originalType=binary&ratio=1&rotation=0&showTitle=false&size=55628&status=done&style=none&taskId=u3d6f83d7-4e39-444a-b27d-94a5ac407f3&title=&width=835)<br />**图30 围栅创建结果**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644565686501-94596a0d-fbe8-4eb4-ba73-94c8af952b65.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=758&id=u44946477&margin=%5Bobject%20Object%5D&name=image.png&originHeight=758&originWidth=1176&originalType=binary&ratio=1&rotation=0&showTitle=false&size=188894&status=done&style=none&taskId=u519191a7-e172-47ec-9856-5eeb7e5f4e4&title=&width=1176)<br />**图31 元素复制结果**

使用围栅拉伸元素

  1. 该方法类似于MicroStation中修改围栅中的拉伸功能,该功能可以对元素以拉伸端点的方式对元素进行拉伸操作。需要注意的是,该方法无法对参照模型中的元素执行拉伸操作。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644565916949-82ea7f2a-7b65-4652-8126-d7017a1835cd.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=335&id=u523c2a6a&margin=%5Bobject%20Object%5D&name=image.png&originHeight=335&originWidth=936&originalType=binary&ratio=1&rotation=0&showTitle=false&size=38044&status=done&style=none&taskId=u1fd58e32-1315-40b0-8b0d-aa5b52f9b58&title=&width=936)<br />**图32 MicroStation中围栅拉伸功能**
  1. public static void StretchElementByFence(string unparsed)//Case:FenceClipByPoints
  2. {
  3. DgnModelRef dgnModelRef = Session.Instance.GetActiveDgnModelRef();//获得当前的模型空间/参照空间 注:DgnModelRef是一个基类,DgnModel和DgnAttachment都派生于这个基类
  4. Viewport view = Session.GetActiveViewport();//获得当前视图信息
  5. double uorPerMas = Session.Instance.GetActiveDgnModel().GetModelInfo().UorPerMaster;//分辨率单位转换为主单位
  6. DPoint3d p1 = new DPoint3d(-10 * uorPerMas, 0, -130 * uorPerMas);//声明围栅坐标点
  7. DPoint3d p2 = new DPoint3d(-10 * uorPerMas, 0, 200 * uorPerMas);
  8. DPoint3d p3 = new DPoint3d(50 * uorPerMas, 0, 200 * uorPerMas);
  9. DPoint3d p4 = new DPoint3d(50 * uorPerMas, 0, -130 * uorPerMas);
  10. DPoint3d[] pos = { p1, p2, p3, p4 };//使用端点声明端点集
  11. if (StatusInt.Success == FenceManager.DefineByPoints(pos, view))//使用端点声明
  12. {
  13. FenceParameters fenceParams = new FenceParameters(dgnModelRef, DTransform3d.Identity);//声明围栅信息
  14. FenceManager.InitFromActiveFence(fenceParams, true, false, FenceClipMode.None);//使用围栅信息初始化围栅
  15. ElementAgenda eAgenda = new ElementAgenda();//声明元素容器
  16. DgnModelRef[] modelRefList = new DgnModelRef[1];//设置需要声明围栅的模型空间
  17. modelRefList[0] = dgnModelRef;//设置模型空间
  18. FenceManager.BuildAgenda(fenceParams, eAgenda, modelRefList, false, false, false);//使用围栅信息获得符合要求的元素集 .
  19. for (uint i = 0; i < eAgenda.GetCount(); i++)//遍历元素容器中的元素
  20. {
  21. Element element = eAgenda.GetEntry(i);//获得元素容器中的元素
  22. DPoint3d po = new DPoint3d(-50*uorPerMas,0,0);//声明坐标点,在本文中用于表明移动的值,具体可参考元素变换课程相关内容
  23. StatusInt status= FenceManager.StretchElement(fenceParams, element,DTransform3d.FromTranslation(po),FenceStretchFlags.None);
  24. /*
  25. * 使用围栅对元素拉伸 注:视图对拉伸结果也有影响
  26. * fenceParameters:围栅信息
  27. * element:围栅内拉伸的元素
  28. * transform:变换信息
  29. * stretchFlags:围栅拉伸风格。若为Cells,则可拉伸用户声明的单元组件
  30. */
  31. if (status==StatusInt.Success)//判断是否拉伸成功
  32. {
  33. element.AddToModel();//将拉伸结果写入模型
  34. }
  35. }
  36. }
  37. }
  1. 在文件名为FenceClipByPoints的案例中,上方四个实体元素是引用参照其他模型中的元素,下方四个实体元素为该模型中的元素。首先仍是使用点集创建围栅,然后在对拉伸方向及大小进行设定后使用FenceManager.StretchElement( )对元素进行拉伸,在本案例中是对元素端点执行X轴负方向进行50单位拉伸的操作。最终获得结果如图所示,从结果上看,参照到模型中的元素无法执行拉伸操作,本模型内的元素则不受限制。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644566715320-edffd468-2e85-4ab2-8392-91be55c63331.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=474&id=ub28c5a2b&margin=%5Bobject%20Object%5D&name=image.png&originHeight=542&originWidth=752&originalType=binary&ratio=1&rotation=0&showTitle=false&size=27365&status=done&style=none&taskId=ua51cb7d6-f898-41fa-9f0f-a77abcd2e99&title=&width=658)<br />**图33 代码执行前**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644566768211-eb6fae2a-8432-4939-aa61-1e041e94cb48.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=549&id=u35d3f89c&margin=%5Bobject%20Object%5D&name=image.png&originHeight=576&originWidth=690&originalType=binary&ratio=1&rotation=0&showTitle=false&size=9011&status=done&style=none&taskId=u51a4a636-2a18-46e0-a43e-9ec3eb975d4&title=&width=658)<br />**图34 围栅建立结果**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644566813993-9050f4c0-7ea3-4b6b-808a-5c4c4b90e16b.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=598&id=udff70f75&margin=%5Bobject%20Object%5D&name=image.png&originHeight=614&originWidth=683&originalType=binary&ratio=1&rotation=0&showTitle=false&size=45918&status=done&style=none&taskId=u069d08cc-9794-442c-b999-3ced08d71fa&title=&width=665)<br />**图35 围栅拉伸结果**

使用围栅剪切元素

该方法与MicroStation中使用围栅剪切元素的功能一致,用于对元素执行剪切操作,它最大的优势在于无论是什么元素,都可以被顺利剪切。当前,在使用围栅剪切后,可能会丢失部分数据,比如说挂接的工程属性,同时,也有可能破坏原本元素内部的数据。
image.png
图36 MicroStation中围栅切割功能

  1. public static void ClipElementByFence(string unparsed)//Case:FenceClipByPoints
  2. {
  3. DgnModelRef dgnModelRef = Session.Instance.GetActiveDgnModelRef();//获得当前的模型空间/参照空间 注:DgnModelRef是一个基类,DgnModel和DgnAttachment都派生于这个基类
  4. DgnModel dgnModel = Session.Instance.GetActiveDgnModel();//获得当前激活的模型空间
  5. Viewport view = Session.GetActiveViewport();//获得当前视图信息
  6. double uorPerMas = Session.Instance.GetActiveDgnModel().GetModelInfo().UorPerMaster;//分辨率单位转换为主单位
  7. DPoint3d p1 = new DPoint3d(-10 * uorPerMas, 0, -130 * uorPerMas);//声明围栅坐标点
  8. DPoint3d p2 = new DPoint3d(-10 * uorPerMas, 0, 200 * uorPerMas);
  9. DPoint3d p3 = new DPoint3d(50 * uorPerMas, 0, 200 * uorPerMas);
  10. DPoint3d p4 = new DPoint3d(50 * uorPerMas, 0, -130 * uorPerMas);
  11. DPoint3d[] pos = { p1, p2, p3, p4 };//使用端点声明端点集
  12. ShapeElement shape = new ShapeElement(dgnModel, null,pos);//声明形元素
  13. if (StatusInt.Success == FenceManager.DefineByElement(shape, view))//使用图形建立围栅
  14. {
  15. FenceParameters fenceParams = new FenceParameters(dgnModelRef, DTransform3d.Identity);//声明围栅信息
  16. FenceManager.InitFromActiveFence(fenceParams, true, true, FenceClipMode.Copy);//使用围栅信息初始化围栅
  17. ElementAgenda eAgenda = new ElementAgenda();//声明元素容器
  18. DgnModelRef[] modelRefList = new DgnModelRef[1];//设置需要声明围栅的模型空间
  19. modelRefList[0] = dgnModelRef;//设置模型空间
  20. FenceManager.BuildAgenda(fenceParams, eAgenda, modelRefList, false, false, false);//使用围栅信息获得符合要求的元素集
  21. for (uint i = 0; i < eAgenda.GetCount(); i++)//遍历元素容器中的元素
  22. {
  23. ElementAgenda insideElems = new ElementAgenda();//声明元素容器
  24. ElementAgenda outsideElems = new ElementAgenda();//声明元素容器
  25. Element element = eAgenda.GetEntry(i);//获得元素容器中的元素
  26. FenceManager.ClipElement(fenceParams, insideElems, outsideElems, element, FenceClipFlags.Optimized);//对围栅内的元素进行剪切
  27. for (uint j = 0; j < outsideElems.GetCount(); j++)//遍历围栅切割后生成的外围元素
  28. {
  29. using (ElementCopyContext copyContext = new ElementCopyContext(dgnModelRef))//复制元素
  30. {
  31. Element elemToCopy = outsideElems.GetEntry(j);//获得切割后生成的外围元素
  32. copyContext.DoCopy(elemToCopy);//将元素复制到指定模型中
  33. }
  34. }
  35. }
  36. }
  37. }

在文件名为FenceClipByPoints的案例中,上方四个实体元素是引用参照其他模型中的元素,下方四个实体元素为该模型中的元素。首先使用点集创建了一个围栅,与上面方法不同的是,在初始化围栅时,FenceManager.InitFromActiveFence( )中第三个参数用于控制围栅是否执行剪切惭怍,需要输入真,然后使用FenceManager.ClipElement( )对围栅检索到的元素使用围栅执行切割操作,最后将切割结果写入模型。需要注意的是,对参照模型中的元素使用围栅剪切也可以获得结果。
image.png
图37 代码执行前
image.png
图38 围栅剪切结果

元素分解

提取元素中多面体几何(Polyface)

  1. 该方法主要用于对分解元素为Polyface,它的优势在于无论是什么元素,只要元素中几何部分具有Polyface,他就可以成功获取。
  1. //参考文章:https://communities.bentley.com/communities/other_communities/bdn_other_communities/b/bdn-blog/posts/mesh
  2. public static void BreakElementIntoPolyface(string unparsed)//Case:BreakSolidExample
  3. {
  4. DgnModel dgnModel = Session.Instance.GetActiveDgnModel();//获取当前的模型空间
  5. double uorPerMas = Session.Instance.GetActiveDgnModel().GetModelInfo().UorPerMaster;//分辨率单位转换为主单位
  6. #region Create Solid
  7. #region Create profile
  8. DPoint3d p1 = new DPoint3d(-uorPerMas, uorPerMas, 0);//声明体元素端点
  9. DPoint3d p2 = new DPoint3d(uorPerMas, uorPerMas, 0);
  10. DPoint3d p3 = new DPoint3d(uorPerMas, -uorPerMas, 0);
  11. DPoint3d p4 = new DPoint3d(-uorPerMas, -uorPerMas, 0);
  12. DPoint3d[] pos = { p1, p2, p3, p4 };//将面元素端点添加到面元素端点数组中
  13. ShapeElement shape = new ShapeElement(dgnModel, null, pos);//声明形元素
  14. #endregion
  15. DPoint3d origin = DPoint3d.Zero;//声明拉伸基点
  16. DVector3d extrudeVector = new DVector3d(uorPerMas, uorPerMas, 10* uorPerMas);//声明拉伸向量
  17. SurfaceOrSolidElement solid = SurfaceOrSolidElement.CreateProjectionElement(dgnModel, null, shape, origin, extrudeVector, DTransform3d.Identity, true);//声明实体元素
  18. solid.AddToModel();//将拉伸体写入模型
  19. #endregion
  20. IList<PolyfaceHeader> polyfaces = new List<PolyfaceHeader>();//声明多面体几何列表
  21. FacetOptions facetOptions = new FacetOptions();//曲面属性,用于设置生成曲面或曲线弦的属性声明
  22. facetOptions.SetDefaults();//属性设置为默认
  23. PolyfaceProcessor polyfaceProcessor = new PolyfaceProcessor(ref polyfaces, facetOptions);//声明用于分解多面体几何的处理器
  24. polyfaceProcessor.Process(solid); //将需要分解的元素输入处理器中
  25. for (int i=0;i<polyfaces.Count;i++)//遍历元素中分解后的多面体几何
  26. {
  27. List<uint> colorIndex = new List<uint>();//声明颜色索引
  28. foreach(DPoint3d po in polyfaces[i].Point)//为了获得该多面体几何的端点个数,对端点进行遍历
  29. {
  30. if(po.Z<5*uorPerMas)//Z坐标小于5为红色,否则则为蓝色
  31. {
  32. colorIndex.Add(0x00ff0000);//红色
  33. }
  34. else
  35. {
  36. colorIndex.Add(0x000000ff);//蓝色
  37. }
  38. //关于16进制颜色对照请参考:http://each.sinaapp.com/tools/color.html 格式为:0x00+(去掉#)16进制颜色
  39. }
  40. polyfaces[i].IntColor = colorIndex;//设置多面体几何的颜色索引值
  41. polyfaces[i].ActivateVectorsForIndexing(polyfaces[i]);//设置为激活状态,以便携带所有的数据及索引信息
  42. MeshHeaderElement meshElem = new MeshHeaderElement(dgnModel, null, polyfaces[i]);//使用修改后的多面体几何建立网格元素
  43. TransformInfo trans = new TransformInfo(DTransform3d.FromTranslation(new DPoint3d(5*uorPerMas,0,0)));//声明变换信息
  44. meshElem.ApplyTransform(trans);//对网格元素应用变换
  45. meshElem.AddToModel();//将网格元素写入模型
  46. }
  47. }
  48. public class PolyfaceProcessor : ElementGraphicsProcessor
  49. {
  50. private IList<PolyfaceHeader> m_outputPolyface;
  51. private FacetOptions m_options;
  52. private DTransform3d m_currentTransform;
  53. public PolyfaceProcessor(ref IList<PolyfaceHeader> outputPolyface, FacetOptions options)
  54. {
  55. m_outputPolyface = outputPolyface;
  56. m_currentTransform = DTransform3d.Identity;
  57. m_options = options;
  58. }
  59. public override FacetOptions GetFacetOptions()
  60. {
  61. return m_options;
  62. }
  63. public override bool ProcessAsBody(bool isCurved)
  64. {
  65. return false;
  66. }
  67. public override bool ProcessAsFacets(bool isPolyface)
  68. {
  69. return true;
  70. }
  71. public override BentleyStatus ProcessFacets(PolyfaceHeader meshData, bool filled = false)
  72. {
  73. if (meshData.FacetCount == 0)
  74. {
  75. return BentleyStatus.Error;
  76. }
  77. PolyfaceHeader header = PolyfaceHeader.New();
  78. header.CopyFrom(meshData);
  79. header.TwoSided = true;
  80. header.Transform(ref m_currentTransform, false);
  81. m_outputPolyface.Add(header);
  82. return BentleyStatus.Success;
  83. }
  84. public void Process(Element element)
  85. {
  86. ElementGraphicsOutput.Process(element, this);
  87. }
  88. public override void AnnounceTransform(DTransform3d transform)
  89. {
  90. if (transform != null)
  91. {
  92. m_currentTransform = transform;
  93. }
  94. else
  95. {
  96. m_currentTransform = DTransform3d.Identity;
  97. }
  98. }
  99. public override void AnnounceIdentityTransform()
  100. {
  101. m_currentTransform = DTransform3d.Identity;
  102. }
  103. }
  1. 在本案例中,首先创建了一个拉伸实体,然后从拉伸实体中获取到其对应的Polyface,然后对Polyface执行端点渐变填充的操作,最后使用Polyface创建出新的元素。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644568728758-b5c4bf3f-0d5a-41a6-b9b7-cf688a4f6ae6.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=449&id=ub00f0efb&margin=%5Bobject%20Object%5D&name=image.png&originHeight=449&originWidth=780&originalType=binary&ratio=1&rotation=0&showTitle=false&size=37669&status=done&style=none&taskId=ucb7fd67d-d4a3-4e66-bf95-bae753f6ec5&title=&width=780)<br />**图39 元素生成结果**

提取元素中曲线(CurveVector)

  1. 该方法主要用于对分解元素为CurveVector,它的优势在于无论是什么元素,只要元素中几何部分具有CurveVector,他就可以成功获取。
  1. public static void BreakElementIntoCurves(string unparsed)//Case:BreakSolidExample
  2. {
  3. DgnModel dgnModel = Session.Instance.GetActiveDgnModel();//获取当前的模型空间
  4. double uorPerMas = Session.Instance.GetActiveDgnModel().GetModelInfo().UorPerMaster;//分辨率单位转换为主单位
  5. #region Create Solid
  6. #region Create profile
  7. DPoint3d p1 = new DPoint3d(-uorPerMas, uorPerMas, 0);//声明体元素端点
  8. DPoint3d p2 = new DPoint3d(uorPerMas, uorPerMas, 0);
  9. DPoint3d p3 = new DPoint3d(uorPerMas, -uorPerMas, 0);
  10. DPoint3d p4 = new DPoint3d(-uorPerMas, -uorPerMas, 0);
  11. DPoint3d[] pos = { p1, p2, p3, p4 };//将面元素端点添加到面元素端点数组中
  12. ShapeElement shape = new ShapeElement(dgnModel, null, pos);//声明形元素
  13. #endregion
  14. DPoint3d origin = DPoint3d.Zero;//声明拉伸基点
  15. DVector3d extrudeVector = new DVector3d(uorPerMas, uorPerMas, 10 * uorPerMas);//声明拉伸向量
  16. SurfaceOrSolidElement solid = SurfaceOrSolidElement.CreateProjectionElement(dgnModel, null, shape, origin, extrudeVector, DTransform3d.Identity, true);//声明实体元素
  17. solid.AddToModel();//将拉伸体写入模型
  18. #endregion
  19. IList<CurveVector> curves = new List<CurveVector>();//声明多面体几何列表
  20. CurveProcessor curveProcessor = new CurveProcessor(ref curves);//声明用于分解曲线几何的处理器
  21. curveProcessor.Process(solid); //将需要分解的元素输入处理器中
  22. List<CurveVector> curvesList = new List<CurveVector>();//声明几何图元列表
  23. for (int i = 0; i < curves.Count; i++)//遍历元素中分解后的曲线几何
  24. {
  25. Element subElem = DraftingElementSchema.ToElement(dgnModel, curves[i], null);//将几何转换成对应的元素
  26. subElem.AddToModel();//将元素写入模型
  27. if (subElem.ElementType==MSElementType.LineString)//判断转换后的元素是否为线串
  28. {
  29. ComplexShapeElement complexShape = new ComplexShapeElement(dgnModel,null);//声明复杂形元素(因为对于线串元素不一定为闭合,有可能无法围城封闭图形,故使用建立shape的形式闭合几何图形)
  30. complexShape.AddComponentElement(subElem);//将线串元素添加到shape元素中
  31. complexShape.AddComponentComplete();//添加元素完成
  32. CurveVector shapeCurve = complexShape.GetCurveVector();//获得shape的封闭图形
  33. CurveVector curveWithFillets = shapeCurve.CloneWithFillets(0.1 * uorPerMas);//对获得的几何图元做倒角处理
  34. curvesList.Add(curveWithFillets);//将几何图元添加到列表中
  35. }
  36. }
  37. BentleyStatus result = Create.BodyFromLoft(out SolidKernelEntity entityOut, curvesList.ToArray(), curvesList.Count, curvesList.ToArray(), 0, dgnModel, false, false);//声明扫掠体
  38. Convert1.BodyToElement(out Element solidElem, entityOut, null, dgnModel);//将实体转换为元素
  39. solidElem.AddToModel();//将元素写入模型空间
  40. }
  41. public class CurveProcessor : ElementGraphicsProcessor
  42. {
  43. private IList<CurveVector> m_outputCurve;
  44. private DTransform3d m_currentTransform;
  45. public CurveProcessor(ref IList<CurveVector> outputCurve)
  46. {
  47. m_outputCurve = outputCurve;
  48. m_currentTransform = DTransform3d.Identity;
  49. }
  50. public override bool ProcessAsBody(bool isCurved)
  51. {
  52. return false;
  53. }
  54. public override bool ProcessAsFacets(bool isPolyface)
  55. {
  56. return false;
  57. }
  58. public override BentleyStatus ProcessCurveVector(CurveVector curves, bool isFilled = false)
  59. {
  60. CurveVector cvs = curves.Clone();
  61. cvs.Transform(m_currentTransform);
  62. m_outputCurve.Add(cvs);
  63. return BentleyStatus.Success;
  64. }
  65. public void Process(Element element)
  66. {
  67. ElementGraphicsOutput.Process(element, this);
  68. }
  69. public override void AnnounceTransform(DTransform3d transform)
  70. {
  71. if (transform != null)
  72. {
  73. m_currentTransform = transform;
  74. }
  75. else
  76. {
  77. m_currentTransform = DTransform3d.Identity;
  78. }
  79. }
  80. public override void AnnounceIdentityTransform()
  81. {
  82. m_currentTransform = DTransform3d.Identity;
  83. }
  84. }
  1. 在本案例中,首先创建了一个拉伸实体,然后从拉伸实体中获取到其对应的CurveVector,然后对拉伸体上部轮廓线执行倒角处理,最后使用扫掠的方式基于修改后的线创建出新的元素。需要注意的是,要想使拉伸图形为封闭图形,则拉伸轮廓要求为封闭图形,而分解获取到的CurveVector得到的为LineString,导致拉伸实体无法闭合,因此在本案例中使用LineString创建ComplexShape,保证其为封闭图形,从而使实体成功闭合。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644569361226-64216028-deb4-446f-ae7a-e34c8e795076.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=610&id=uad0c4e9f&margin=%5Bobject%20Object%5D&name=image.png&originHeight=696&originWidth=730&originalType=binary&ratio=1&rotation=0&showTitle=false&size=38584&status=done&style=none&taskId=uca4bc73d-97a7-4139-aff4-05a382dae85&title=&width=640)<br />**图40 从左至右依次为获取到的线段,原拉伸体,修改后新生成的元素**<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21640708/1644569331377-6cd74d5f-01d1-49ea-8449-4ac1bf83e430.png#clientId=u934535aa-1928-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=453&id=u3d77c773&margin=%5Bobject%20Object%5D&name=image.png&originHeight=602&originWidth=856&originalType=binary&ratio=1&rotation=0&showTitle=false&size=19281&status=done&style=none&taskId=ubda3bab4-c80e-4b8a-8634-3aa0a67ee85&title=&width=644)<br />**图41 元素对比**

巩固练习(三)参考代码

  1. 该练习中的方法涉及到前两期的方法,主要步骤为:
  1. 使用拉伸实体功能创建梁与圆柱并进行变换
  2. 对梁截面进行标注并进行变换
  3. 对梁与圆柱执行布尔运算
  4. 对实体进行材质附加 ```csharp

    region PracticeWork

    public static void CmdPracticeWork(string unparsed) { DgnFile dgnFile = Session.Instance.GetActiveDgnFile();//获得当前激活的文件 DgnModel dgnModel = Session.Instance.GetActiveDgnModel();//获取当前的模型空间 double uorPerMeter = Session.Instance.GetActiveDgnModel().GetModelInfo().UorPerMeter;//分辨率单位转换为米

    region Create beam

    region Create profile

    double H = 700 uorPerMeter/1000; double H1 = 125 uorPerMeter / 1000, H2 = 125 uorPerMeter / 1000; double H3 = 275 uorPerMeter / 1000; double H4 = 75 uorPerMeter / 1000, B4 = 75 uorPerMeter / 1000; double H5 = 100 uorPerMeter / 1000; double B3 = 125 uorPerMeter / 1000; double B1 = 400 uorPerMeter / 1000; double B2 = 300 uorPerMeter / 1000; double B = 150 * uorPerMeter / 1000;

    DPoint3d p1 = new DPoint3d(-1 0.5 B1, 0, 0);//声明体元素端点 DPoint3d p2 = new DPoint3d(-1 0.5 B1, 0, H2); DPoint3d p3 = new DPoint3d(-0.5 B, 0, H2 + H5); DPoint3d p4 = new DPoint3d(-0.5 B, 0, H2 + H5 + H3); DPoint3d p5 = new DPoint3d(-0.5 B2, 0, H2 + H5 + H3 + H4); DPoint3d p6 = new DPoint3d(-0.5 B2, 0, H); DPoint3d p7 = new DPoint3d(0.5 B2, 0, H); DPoint3d p8 = new DPoint3d(0.5 B2, 0, H2 + H5 + H3 + H4); DPoint3d p9 = new DPoint3d(0.5 B, 0, H2 + H5 + H3); DPoint3d p10 = new DPoint3d(0.5 B, 0, H2 + H5); DPoint3d p11 = new DPoint3d(0.5 B1, 0, H2); DPoint3d p12 = new DPoint3d(0.5 B1, 0, 0);

    DPoint3d[] pos = { p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12 };//将面元素端点添加到面元素端点数组中

    ShapeElement shape = new ShapeElement(dgnModel, null, pos);//声明形元素

    endregion

    DPoint3d origin = DPoint3d.Zero;//声明拉伸基点 DVector3d extrudeVector = new DVector3d(0, 12 * uorPerMeter, 0);//声明拉伸向量

    SurfaceOrSolidElement beamSolid = SurfaceOrSolidElement.CreateProjectionElement(dgnModel, null, shape, origin, extrudeVector, DTransform3d.Identity, true);//使用投影的方式声明拉伸体元素

    endregion

    region Create dimension

    DPoint3d d1 = new DPoint3d(-0.5 B1, 0, -50 uorPerMeter / 1000);//声明标注点 DPoint3d d2 = new DPoint3d(0.5 B1, 0, -50 uorPerMeter / 1000);//声明标注点 DPoint3d[] dimensionPos1 = { d1, d2 };//声明标注点数组 DMatrix3d dMatrix1 = new DMatrix3d(-1, 0, 0, 0, 0, 1, 0, -1, 0);//声明变换矩阵 DimensionElement dimEle1 = CreateDimensionElement(dgnFile, dgnModel, dimensionPos1, string.Empty, dMatrix1);//声明标注元素 dimEle1.AddToModel();//将标注元素写入模型

    DPoint3d d3 = new DPoint3d(-0.5 B1, 0, -10 uorPerMeter / 1000); DPoint3d d4 = new DPoint3d(-0.5 B, 0, -10 uorPerMeter / 1000); DPoint3d d5 = new DPoint3d(0.5 B, 0, -10 uorPerMeter / 1000); DPoint3d d6 = new DPoint3d(0.5 B1, 0, -10 uorPerMeter / 1000); DPoint3d[] dimensionPos2 = { d3, d4, d5, d6 }; DimensionElement dimEle2 = CreateDimensionElement(dgnFile, dgnModel, dimensionPos2, string.Empty, dMatrix1); dimEle2.AddToModel();//将标注元素写入模型

    DMatrix3d dMatrix2 = DMatrix3d.FromRows(new DVector3d(0, 1, 0), new DVector3d(-1, 0, 0), new DVector3d(0, 0, 1)); DMatrix3d dMatrix = DMatrix3d.Multiply(dMatrix1, dMatrix2);

    DPoint3d d7 = new DPoint3d(-0.5 B1 - 50 uorPerMeter / 1000, 0, 0); DPoint3d d8 = new DPoint3d(-0.5 B1 - 50 uorPerMeter / 1000, 0, H); DPoint3d[] dimensionPos3 = { d7, d8 }; DimensionElement dimEle3 = CreateDimensionElement(dgnFile, dgnModel, dimensionPos3, string.Empty, dMatrix); dimEle3.AddToModel();//将标注元素写入模型

    DPoint3d d9 = new DPoint3d(-0.5 B1 - 10 uorPerMeter / 1000, 0, 0); DPoint3d d10 = new DPoint3d(-0.5 B1 - 10 uorPerMeter / 1000, 0, H2); DPoint3d d11 = new DPoint3d(-0.5 B1 - 10 uorPerMeter / 1000, 0, H2 + H5); DPoint3d d12 = new DPoint3d(-0.5 B1 - 10 uorPerMeter / 1000, 0, H2 + H5 + H3); DPoint3d d13 = new DPoint3d(-0.5 B1 - 10 uorPerMeter / 1000, 0, H2 + H5 + H3 + H4); DPoint3d d14 = new DPoint3d(-0.5 B1 - 10 uorPerMeter / 1000, 0, H); DPoint3d[] dimensionPos4 = { d9, d10, d11, d12, d13, d14 }; DimensionElement dimEle4 = CreateDimensionElement(dgnFile, dgnModel, dimensionPos4, string.Empty, dMatrix); dimEle4.AddToModel();//将标注元素写入模型

    endregion

    region Create column

    EllipseElement ellipse = new EllipseElement(dgnModel,null, DPoint3d.Zero,350uorPerMeter/1000, 350 uorPerMeter / 1000,DMatrix3d.Identity);

    DVector3d columnVector = new DVector3d(0, 0, 3 * uorPerMeter);//声明拉伸向量

    SurfaceOrSolidElement columnSolid = SurfaceOrSolidElement.CreateProjectionElement(dgnModel, null, ellipse, DPoint3d.Zero, columnVector, DTransform3d.Identity, true);//使用投影的方式声明拉伸体元素

    DTransform3d dTransform3D= DTransform3d.FromTranslation(new DPoint3d(0,12uorPerMeter,-1uorPerMeter));//声明变换几何,执行元素平移操作 TransformInfo trans = new TransformInfo(dTransform3D);//声明变换信息 columnSolid.ApplyTransform(trans);//对拉伸圆柱体施加变换信息

    endregion

    region BooleanSubtract

    Convert1.ElementToBody(out SolidKernelEntity entity1, beamSolid, true, false, false);//将实体转成SolidKernelEntity Convert1.ElementToBody(out SolidKernelEntity entity2, columnSolid, true, false, false);//将圆台实体元素转成SolidKernelEntity SolidKernelEntity[] entities = { entity2 };//声明实核实体集 Modify.BooleanSubtract(ref entity1, ref entities, entities.Count());//用实核实体集中的实体与实体进行布尔减运算 Convert1.BodyToElement(out Element resultElem, entity1, null, dgnModel);//将结果转换为元素

    endregion

    region Attach material

    MaterialId id = FindMaterial(dgnFile, dgnModel); AttachMaterialToElement(id, resultElem); AttachMaterialToElement(id, columnSolid);

    endregion

    }

private static void AttachMaterialToElement(MaterialId id, Element elem) {
if (id != null) { MaterialPropertiesExtension propertiesExtension = MaterialPropertiesExtension.GetAsMaterialPropertiesExtension((DisplayableElement)elem);//为拉伸实体元素设置材料属性
propertiesExtension.AddMaterialAttachment(id);//添加嵌入的材料信息 propertiesExtension.StoresAttachmentInfo(id);//保存拉伸实体元素的材料信息
propertiesExtension.AddToModel();//将拉伸实体写入模型 } }

private static MaterialId FindMaterial(DgnFile dgnFile, DgnModel dgnModel) { MaterialTable matTbl = new MaterialTable(dgnFile);//声明材料表 matTbl.Name = “MyMaterialTable”;//声明材料表名称 PaletteInfo[] palInfo = MaterialManager.GetPalettesInSearchPath(“MS_MATERIAL”);//从MS_MATERIAL的环境变量声明路径下读取材料图表 if (palInfo.Length < 1)//判断是否获取到材料图表 { MessageCenter.Instance.ShowInfoMessage(“Can’t get palette”, null, true);//输出错误信息 return null;//返回 } for (int i = 0; i < palInfo.Count(); i++)//遍历材料图表 { if (palInfo[i].Name == “Concrete&Pavers”)//判断材料图表是否名为Concrete&Pavers { matTbl.AddPalette(palInfo[i]);//添加材料图表至材料表 break;//跳出循环 } else if (i == palInfo.Count() - 1)//若未找到名为lightwidgets的材料图表 { MessageCenter.Instance.ShowErrorMessage(“Can’t find material lib named lightwidgets, please check”, “Can’t find material lib named lightwidgets, please check”, true);//输出错误信息 } } MaterialManager.SetActiveTable(matTbl, dgnModel);//设置当前材料表为激活图表 MaterialManager.SaveTable(matTbl);//保存材料表

  1. MaterialId id = new MaterialId("Concrete_1");//查找名为Concrete_1的材料
  2. return id;

}

endregion

  1. /*
  2. * 参考论坛帖子:
  3. * https://communities.bentley.com/communities/other_communities/chinafirst/f/microstation-projectwise/158653/ms-ce-c
  4. * https://communities.bentley.com/communities/other_communities/chinafirst/f/microstation-projectwise/200717/thread/601140#601140
  5. * https://communities.bentley.com/communities/other_communities/chinafirst/f/microstation-projectwise/221336/abd-ce-c/678991#678991
  6. */
  7. private static DimensionElement CreateDimensionElement(DgnFile dgnFile, DgnModel dgnModel, DPoint3d[] pos, string text, DMatrix3d dMatrix)
  8. {
  9. //获取当前dgn文件中名字为"DimStyle"的标注样式,尺寸标注元素的外貌由上百个属性控制,而标注样式是一组预先设置好的属性
  10. //获取了预先订制好的标注样式之后,还可以调用DimensionStyle下的各种SetXXX成员函数修改设置的属性
  11. DimensionStyle dimStyle = new DimensionStyle("DimStyle", dgnFile);//声明标注样式
  12. dimStyle.SetBooleanProp(true, DimStyleProp.Placement_UseStyleAnnotationScale_BOOLINT);//设置标注样式
  13. dimStyle.SetDoubleProp(1, DimStyleProp.Placement_AnnotationScale_DOUBLE);
  14. dimStyle.SetBooleanProp(true, DimStyleProp.Text_OverrideHeight_BOOLINT);
  15. dimStyle.SetDistanceProp(200, DimStyleProp.Text_Height_DISTANCE, dgnModel);
  16. dimStyle.SetBooleanProp(true, DimStyleProp.Text_OverrideWidth_BOOLINT);
  17. dimStyle.SetDistanceProp(200, DimStyleProp.Text_Width_DISTANCE, dgnModel);
  18. dimStyle.SetBooleanProp(true, DimStyleProp.General_UseMinLeader_BOOLINT);
  19. dimStyle.SetDoubleProp(0.01, DimStyleProp.Terminator_MinLeader_DOUBLE);
  20. dimStyle.SetBooleanProp(true, DimStyleProp.Value_AngleMeasure_BOOLINT);
  21. dimStyle.SetAccuracyProp((byte)AnglePrecision.Use1Place, DimStyleProp.Value_AnglePrecision_INTEGER);
  22. int alignInt = (int)DimStyleProp_General_Alignment.True;
  23. StatusInt status = dimStyle.SetIntegerProp(alignInt, DimStyleProp.General_Alignment_INTEGER);
  24. dimStyle.GetIntegerProp(out int valueOut, DimStyleProp.General_Alignment_INTEGER);
  25. DgnTextStyle textStyle = new DgnTextStyle("TestStyle", dgnFile);//设置文字样式
  26. LevelId lvlId = Settings.GetLevelIdFromName("Default");//设置图层
  27. CreateDimensionCallbacks callbacks = new CreateDimensionCallbacks(dimStyle, textStyle, new Symbology(), lvlId, null);//尺寸标注元素的构造函数会调用DimensionCreateData的各个成员函数去获取声明尺寸标注元素需要的各种参数
  28. DimensionElement dimEle = new DimensionElement(dgnModel, callbacks, DimensionType.SizeStroke);//声明标注元素
  29. if (dimEle.IsValid)//判断标注元素是否有效
  30. {
  31. for (int i = 0; i < pos.Count(); i++)
  32. {
  33. dimEle.InsertPoint(pos[i], null, dimStyle, -1);//对标注元素设置插入点
  34. }
  35. dimEle.SetHeight(500);//设置尺寸标注元素的高度
  36. dimEle.SetRotationMatrix(dMatrix);//设置变换信息
  37. }
  38. return dimEle;
  39. }

class CreateDimensionCallbacks : DimensionCreateData { private DimensionStyle m_dimStyle; private DgnTextStyle m_textStyle; private Symbology m_symbology; private LevelId m_levelId; private DirectionFormatter m_directionFormatter; public CreateDimensionCallbacks(DimensionStyle dimStyle, DgnTextStyle textStyle, Symbology symb, LevelId levelId, DirectionFormatter formatter) { m_dimStyle = dimStyle; m_textStyle = textStyle; m_symbology = symb; m_levelId = levelId; m_directionFormatter = formatter; }

  1. public override DimensionStyle GetDimensionStyle()
  2. {
  3. return m_dimStyle;
  4. }
  5. public override DgnTextStyle GetTextStyle()
  6. {
  7. return m_textStyle;
  8. }
  9. public override Symbology GetSymbology()
  10. {
  11. return m_symbology;
  12. }
  13. public override LevelId GetLevelId()
  14. {
  15. return m_levelId;
  16. }
  17. public override int GetViewNumber()
  18. {
  19. return 0;
  20. }
  21. //此函数返回的旋转矩阵与GetViewRotation返回的旋转矩阵共同声明了尺寸标注元素的方向
  22. public override DMatrix3d GetDimensionRotation()
  23. {
  24. return DMatrix3d.Identity;
  25. }
  26. public override DMatrix3d GetViewRotation()
  27. {
  28. return DMatrix3d.Identity;
  29. }
  30. //用于从数字方向值构造字符串。
  31. public override DirectionFormatter GetDirectionFormatter()
  32. {
  33. return m_directionFormatter;
  34. }
  35. }

``` image.png
图42 最终效果展示一
image.png
图43 最终效果展示二
image.png
图44 最终效果展示三