Back to project page model-explorer.
The source code is released under:
Apache License
If you think the Android project model-explorer 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.etaoin.myopengltest.util.shapes; //from w w w . j a va2 s .c o m /** * Interface for objects that can be drawn in the canvas. */ public interface Drawable { public void initialize(); public void draw(float[] vpMatrix); }