List of utility methods to do Vector Divide
void | vectorDiv2D(float[] array, int vectorIndex, float scale) This method divides the given 2D vector by the give scale value. int tempIndex = 2 * vectorIndex;
array[tempIndex] /= scale;
array[tempIndex + 1] /= scale;
|