Some GEOM module operations are very slow with many surfaces
Some GEOM module operations are very slow with many surfaces



Re: Some GEOM module operations are very slow with many surfaces

Hello,
Unfortunately, GEOM does not well suit to work with meshes. Indeed, STL stores data as a set of triangles - it is in fact format to store mesh data, not geometry. It means that each triangle represents a separate face. When STL is imported to GEOM, resulting CAD model is a shell that consists of a large number of faces, even though they belong to the same (few) surfaces. GEOM is not optimized to work with the huge number of sub-shapes - some GUI operations (like creation/editing groups) automatically explode the shape to sub-shapes, to allow manipulating them (select, show/hide, etc). That's why the performance may be mad on such STL import.
Regards,
Vadim.
Re: Some GEOM module operations are very slow with many surfaces

Re: Some GEOM module operations are very slow with many surfaces

No, currently no improvements in this direction. And it is not easy to solve mentioned problems. On the other hand, I believe there should not be many problems working with geometry imported from STL in batch mode - i.e. via scripting.