//-------------------------------------------------------------------------------------------------- bool _HasTriangulation(TopoDS_Shape shape) { var faces = shape.Faces(); return(faces.Any(face => BRepTools.Triangulation(face, Precision.Infinite()))); }