Hello,
I am working on a mesh modification code, and I have a function that is taking quite sometime as it goes node by node. for this reason I tested adding multhreading and also tested with multiprocessing. inside the function the functions that gave me problems where:
geompy.MakeVertex(x,y,z)
geompy.MakeProjection(obj,obj)
Mesh.MoveNode(nodeID,x,y,z)
with multithreading, the function gives error when I use the MakeVertex function (it didnt achieve to run the MakeProjection but I imagine that it will give also problems)
with multiprocessing the geompy functions did not gave a problem but the MoveNode didnt gave any error but did not modify the mesh.
is there any example to be able to do similar things with the multiprocessing python package?
thanks in advance