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.io; //from w w w . j a v a 2 s.c o m import com.etaoin.myopengltest.util.shapes.Drawable; import java.io.IOException; /** * Interface 3D model parsers. */ public interface ModelParser { public Drawable parse() throws IOException; }