Package com.badlogic.gdx.utils

Examples of com.badlogic.gdx.utils.IntArray.shrink()


        triangles.add(faceIndices.items[i + 1]);
      }
      indices.addAll(triangles);
    }

    indices.shrink();
    return indices;
  }

  private static short[] convertToShortArray (IntArray array) {
    short[] shortArray = new short[array.size];
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.