Exemplo n.º 1
0
 public static void populateFromBuffer(final Vector3 vector, final float[] buf, final int index) {
   vector.setX(buf[index * 3]);
   vector.setY(buf[index * 3 + 1]);
   vector.setZ(buf[index * 3 + 2]);
 }