Does C++ SDK support running parallelized tasks, I’ve got three nested loops to create a 3D grid of points, and connecting all of them, then check intersection, can I speed it with open mp?
Thanks in advance
Does C++ SDK support running parallelized tasks, I’ve got three nested loops to create a 3D grid of points, and connecting all of them, then check intersection, can I speed it with open mp?
Thanks in advance
Rhino is not thread safe. But, you can make your own calculations in a thread without any problem. But all access to the Rhino document should occur in the main thread.
Does this help?
– Dale
Dale,
Thanks for your quick reply