Back to project page OpenGlDraw_Android.
The source code is released under:
GNU General Public License
If you think the Android project OpenGlDraw_Android 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 com.example.opengldraw.utils; /* w ww. ja v a 2s . c o m*/ public class IndexOrderObj extends Object { long iVertex; int iText; int iNorm; public IndexOrderObj(long aIVertex, int aIText, int aINorm) { iVertex = aIVertex; iText = aIText; iNorm = aINorm; } public long getIVertex() { return iVertex; } public void setIVert(long aIVertex) { iVertex = aIVertex; } public int getIText() { return iText; } public void setIText(int aIText) { iText = aIText; } public int getINorm() { return iNorm; } public void setINorm(int aINorm) { iNorm = aINorm; } }