Back to project page fun-gl.
The source code is released under:
Apache License
If you think the Android project fun-gl 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.jcxavier.android.opengl.util; //from w ww . j a v a 2s.c om /** * Created on 13/03/2014. * * @author Joo Xavier <jcxavier@jcxavier.com> */ public final class Constants { /** * The float size, in bytes. */ public static final int FLOAT_SIZE = 4; private Constants() { // can't be instantiated } }