Back to project page android-plotter.
The source code is released under:
Apache License
If you think the Android project android-plotter listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.solovyev.android.plotter.meshes; //from ww w . jav a2 s . co m import javax.microedition.khronos.opengles.GL10; enum IndicesOrder { TRIANGLES(GL10.GL_TRIANGLES), TRIANGLE_STRIP(GL10.GL_TRIANGLE_STRIP), LINE_STRIP(GL10.GL_LINE_STRIP), LINES(GL10.GL_LINES), ; public final int glMode; IndicesOrder(int glMode) { this.glMode = glMode; } }