Solid from face

How create solid from face using revit api

Using python or C#. Could you be more specific and show us your work.

geom_elem = elem.Geometry();
for x in geom_elem:
    if x.GetType().Name=="Solid":
        solid=x
Faces =solid.Faces

Faces ->to Model Face Solids (create this face solids inside revit model) ?

Is this what you need?
image

4 Likes

Yes, Thank you @Kulkul