I believe this line meant to sum the number of neighbors and not the neighbor indices:
neighbors = list(map(sum, indices))
I think it should be:
neighbors = list(map(len, indices))
Did the ripple training worked for you? Which method had the best performance with cloth simulation?
I believe this line meant to sum the number of neighbors and not the neighbor indices:
neighbors = list(map(sum, indices))
I think it should be:neighbors = list(map(len, indices))
Did the ripple training worked for you? Which method had the best performance with cloth simulation?