Back to project page RollOverSphere---a-simple-libgdx-game.
The source code is released under:
MIT License
If you think the Android project RollOverSphere---a-simple-libgdx-game 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.igorcrevar.rolloverchuck.objects.boxes; /*from ww w .j a v a 2 s.c o m*/ import com.badlogic.gdx.math.Vector3; public interface IBoxRegion { public void free(); /** * Return true if region is available and if distance ^ 2 from position is greater minDistanceSquared * @param pos position from which distance is calculated * @param minDistance * @return true if available */ public boolean isFreeAndNotNear(Vector3 basePosition, Vector3 tmpVector, float minDistanceSquared); public boolean isFree(); public void populatePosition(Vector3 pos); public void take(); }