logger.fine("bottomLeftLocal = " + bottomLeftLocal);
logger.fine("bottomRightLocal = " + bottomRightLocal);
Matrix4f local2World = getLocalToWorldMatrix(null); // TODO: prealloc
Vector3f topLeftWorld = local2World.mult(topLeftLocal, new Vector3f()); // TODO:prealloc
Vector3f topRightWorld = local2World.mult(topRightLocal, new Vector3f()); // TODO:prealloc
Vector3f bottomLeftWorld = local2World.mult(bottomLeftLocal, new Vector3f()); // TODO:prealloc
Vector3f bottomRightWorld = local2World.mult(bottomRightLocal, new Vector3f()); // TODO:prealloc
logger.fine("topLeftWorld = " + topLeftWorld);
logger.fine("topRightWorld = " + topRightWorld);
logger.fine("bottomLeftWorld = " + bottomLeftWorld);
logger.fine("bottomRightWorld = " + bottomRightWorld);