CGALDotNet
CGALDotNet copied to clipboard
Performance of GetPoints
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?