Hi Everybody
I need some help concerning IFC File.
When I import a IFC File, I need to get information on its element.
But when I try to get geometry, solid and faces of a ifc element, these variables are null.
Could someone please give me an example of getting information of IFC elements?
For example :
ifc slab => get faces and curves (nodes and coordinates) and thickness if possible
ifc wall => the same thing
I used to do this for a original revit model (not ifc) and it works fine. But the same method for ifc elements doesn' work.
For example concerning Floors (let Be a Revit floor FL0):
Floor FL0
Options option=doc.Application.Create.NewGeometryOptions();
GeometryElement geometryElement=FL0.get_Geometry(option);
foreach (GeometryObject obj in geometryElement)
{
solid=obj as Solid;
}
FaceArray faces=solid.Faces;
Best regards.