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; /* www . ja v a 2 s . c om*/ public interface ShapeDataInterface { public float[] getVertices(); public float[] getColors(); /** set the materials to the same color values (or at least one of the materials) */ public float[] getNormals(); public short[] getDrawOrder(); public float[] getTextCoords(); }