Hi everybody and thanks for help !
I'm trying to find the fastest algorithm to determine symmetry from a list of vector. Each vector are 3D Vector (maya.api.OpenMaya.MVector, so it have x, y and z attributes as well) and they all are part of the same 3D mesh that should be symmetric.
Of course, I have to take care of minor differences, for example 0.00001 of difference.
I've already tried the most basic algorithm that came to me: Iterate through all points for all points and find those that match the most (using round etc..) To optimize it the most I used maya iterators and skipping points under or equal to 0 on first iterator and those above or equal to 0 on second. But the performance are still 'bad'.
I've heard about scipy kdtree but I can't use scipy within maya (And cant compile it tho)*. I also heard about spatially ordered list, but I don't really understand how to make this works...
Of course you can ask me if you need more details, thanks alot ! :)
- EDIT: Ok, I've found a way to get a compiled version of scipy for maya.py (1.19.0) so I now have a lot of new possibilities. I'll let you know if I found something.
I wrote a script using Open Maya 2.0. I am using MItMeshVertex to iterate the vertices and MFnMesh.getClosestPoint to find the matching vertex on the other side, posting it below in case you have used two iterators instead. The script is not amazingly fast tho. I was wondering how fast is the one using the kdtree...