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.interfaces; //w ww .j a v a 2 s . c om import com.min3d.lib.core.Object3d; /** * Using Actionscript 3 nomenclature for what are essentially "pass-thru" methods to an underlying ArrayList */ public interface IObject3dContainer { public void addChild(Object3d $child); public void addChildAt(Object3d $child, int $index); public boolean removeChild(Object3d $child); public Object3d removeChildAt(int $index); public Object3d getChildAt(int $index); public Object3d getChildByName(String $string); public int getChildIndexOf(Object3d $o); public int numChildren(); }