代碼集合
擷取元素所有面
#region 獲得元素的所有面
public List<Face> GetGeoFaces(Element ele)
{
//存放集合元素的所有面
List<Face> geoFaces = new List<Face>();
//用上一節的方法取得所有幾何體solid
List<Solid> solids = GetSolidsOfElement(ele);
//從集合體重提取所有face,存進集合
foreach (Solid solid in solids)
{
foreach (Face face in solid.Faces)
{
if (face.Area > 0)
geoFaces.Add(face);
}
}
return geoFaces;
}
#endregion
#region GetSolidsOfElement:從element裡面擷取實體的方法
public List<Solid> GetSolidsOfElement(Element ele)
{
//生成事件,指定傳回資料的特征
Options options = new Options();
options.DetailLevel = ViewDetailLevel.Fine;
options.ComputeReferences = true;
options.IncludeNonVisibleObjects = true;
//取得構件元素
GeometryElement geoElement = ele.get_Geometry(options);
List<GeometryObject> geoObj = new List<GeometryObject>();
//遞歸擷取集合元素的所有geometryobject
GetAllObj(geoElement, ref geoObj);
//轉為solid的集合
List<Solid> solids = geoObj.ConvertAll(m => m as Solid);
return solids;
}
#endregion