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.Game.Collisions; /*from w w w . j av a 2s .c om*/ import com.ThirtyNineEighty.Helpers.Plane; import com.ThirtyNineEighty.Helpers.Vector2; import com.ThirtyNineEighty.Helpers.Vector3; import java.util.ArrayList; public interface ICollidable { void setGlobal(Vector3 position, Vector3 angles); float getRadius(); ArrayList<Vector2> getConvexHull(Plane plane); ArrayList<Vector3> getGlobalVertices(); ArrayList<Vector3> getGlobalNormals(); }