Brep face list

Hi,
I’m trying to get the faces of an open brep,
but at the moment I only get the faces as a whole surface.
and not the shape as it should be.
I’m doing this:
BrepFaceList brFaceList = bowl.Faces;
brFaceList.ShrinkFaces();
how can I improve the results?
thanks in advance
Carlos

Hi Carlos,

We will need more information to be helpful.

What are you trying to do and why? How did you create the Brep? Can you post the geometry, along with a better description of the problem?

Thanks,

– Dale

Thank you very much Dale,
I just resolve the problem.
to get the faces of the Brep I did this:
List fcLst = new List();
foreach (BrepFace s in bowl.Faces)
{
Brep faceBr = s.DuplicateFace(true);
fcLst.Add(faceBr);
}