CGALDotNet icon indicating copy to clipboard operation
CGALDotNet copied to clipboard

Performance of GetPoints

Open tsukasa1989 opened this issue 2 years ago • 0 comments

To create a Polygon from a list of points and faces is really fast. But retrieving back the points is really slow. Right now it's faster to export an PLY and run a compiled C++ script to read that file, run the code, write back a PLY file and load it back into the software. Our goal is to remove the time of writing/reading by using this library.

The GetPoints function takes about 10 seconds to run. Whereas GetTriangleIncides is instant. 36017 vertices and 222258 indices.

Any idea on how to get the points fast?

tsukasa1989 avatar Aug 03 '22 17:08 tsukasa1989