Android Open Source - OpenGlDraw_Android Index Order Obj






From Project

Back to project page OpenGlDraw_Android.

License

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.

Java Source Code

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;
   }
}




Java Source Code List

com.example.opengldraw.MainActivity.java
com.example.opengldraw.gl.GLSurfaceViewDraw.java
com.example.opengldraw.gl.RendererDraw.java
com.example.opengldraw.gl.ShapeDrawer.java
com.example.opengldraw.shapes.FireEngine.java
com.example.opengldraw.shapes.ShapeCube.java
com.example.opengldraw.shapes.ShapeCup10Verts.java
com.example.opengldraw.shapes.ShapeCup64Verts.java
com.example.opengldraw.shapes.ShapeSquare.java
com.example.opengldraw.utils.IndexOrderObj.java
com.example.opengldraw.utils.ShapeDataInterface.java
com.example.opengldraw.utils.WavefrontObj.java