Back to project page min3d.
The source code is released under:
MIT License
If you think the Android project min3d 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.min3d.lib; // w w w. j ava 2 s.c o m import com.min3d.lib.animation.AnimationObject3d; import com.min3d.lib.core.Object3dContainer; /** * Interface for 3D object parsers * * @author dennis.ippel * */ public interface IParser { /** * Start parsing the 3D object */ public void parse(); /** * Returns the parsed object * @return */ public Object3dContainer getParsedObject(); /** * Returns the parsed animation object * @return */ public AnimationObject3d getParsedAnimationObject(); }