Can anyone shed some light on this issue I'm having while attempting to set vertices of a geometry using a quaternion? The code snippet I've been using is:
geometry.attributes.position.array[x].applyQuaternion(quaternion)
However, it doesn't seem to be working as expected. I am aware that there have been changes in the implementation in the past and I suspect that the problem lies in the fact that
geometry.vertices[x]
is no longer accessible. Any insights on this?