Back to project page swipemenu.
The source code is released under:
Apache License
If you think the Android project swipemenu 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.orhanobut.android.swipemenu; //w ww . ja v a2 s .co m public class Square extends WorldObject { public float theta; public boolean isCompleted = true; public Square(float[] vertices, short[] drawOrder, String vertexShaderCode, String fragmentShaderCode) { super(vertices, drawOrder, vertexShaderCode, fragmentShaderCode); } public Square(float[] vertices, float[] texture, short[] drawOrder, String vertexShaderCode, String fragmentShaderCode) { super(vertices, texture, drawOrder, vertexShaderCode, fragmentShaderCode); } @Override public void init() { } }