Back to project page Tanks.
The source code is released under:
MIT License
If you think the Android project Tanks 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.ThirtyNineEighty.Renderable.Renderable3D; import com.ThirtyNineEighty.Helpers.Vector3; public interface I3DRenderable { void draw(float[] modelProjectionViewMatrix, float[] light); void setGlobal(Vector3 position, Vector3 angles); }