* the position (in terms of vectors, not floats) of the vector to multiply
*/
public static void multInBuffer(final ReadOnlyVector2 toMult, final FloatBuffer buf, final int index) {
final Vector2 temp = Vector2.fetchTempInstance();
populateFromBuffer(temp, buf, index);
temp.multiplyLocal(toMult);
setInBuffer(temp, buf, index);
Vector2.releaseTempInstance(temp);
}
/**