@Override
public LinkedList<Vector3f> sense(EvolvableBoxAgent3DEnvironment env,
EvolvableBoxAgent3D agent) {
Vector3f currentPosition = new Vector3f();
currentPosition = agent.getAveragedPosition();
currentPosition.normalize();
Vector3f currentLinearVelocity = new Vector3f();
agent.getRigidBody().getLinearVelocity(currentLinearVelocity);
currentLinearVelocity.y = 0;
currentLinearVelocity.normalize();
LinkedList<Vector3f> list = new LinkedList<Vector3f>();