I simply want to find the vertex number of a point inside a given primitive in VEX
For example :
I want to find the vertex number of point 45 in primitive 41 (which is 0)
I want to find the vertex number of point 45 in primitive 31 (which is 2)
I want to find the vertex number of point 55 in primitive 41 (which is 3)
I tried int pointvertex(<geometry>geometry, int point_num) function,
int primvertex(<geometry>geometry, int primnum, int vertex)
I also tried primvertices or pointvertices
But they never gives me the good number, maybe because this is linear vertex
Any help would be appreciated
Thanks !

