Is it possible to create a simple 3D model (for example in 3DS MAX) and then import it to Android?
That's where I got to:
int vertices[] = context.getResources().getIntArray(R.array.vertices);
gl.glDrawElements(GL10.GL_TRIANGLES, 212*6, GL10.GL_UNSIGNED_SHORT, mIndexBuffer);
- you can find that number (212 in this case) on top of the OFF fileHere you can find my project page, which uses this solution: Github project > vsiogap3d