Searched refs:fromPos (Results 1 – 1 of 1) sorted by relevance
/external/jmonkeyengine/engine/src/core/com/jme3/util/ |
D | BufferUtils.java | 363 public static void copyInternalVector3(FloatBuffer buf, int fromPos, int toPos) { in copyInternalVector3() argument 364 copyInternal(buf, fromPos * 3, toPos * 3, 3); in copyInternalVector3() 568 public static void copyInternalVector2(FloatBuffer buf, int fromPos, int toPos) { in copyInternalVector2() argument 569 copyInternal(buf, fromPos * 2, toPos * 2, 2); in copyInternalVector2() 802 public static void copyInternal(FloatBuffer buf, int fromPos, int toPos, int length) { in copyInternal() argument 804 buf.position(fromPos); in copyInternal()
|