* Fixed IllegalArgumentException in Camera.setGuiBounding
git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7298 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
parent
b729309949
commit
4698e13644
@ -1098,8 +1098,8 @@ public class Camera implements Savable, Cloneable {
|
||||
float ex = width * viewPortRight;
|
||||
float sy = height * viewPortBottom;
|
||||
float ey = height * viewPortTop;
|
||||
float xExtent = (ex - sx) / 2;
|
||||
float yExtent = (ey - sy) / 2;
|
||||
float xExtent = Math.max(0f, (ex - sx) / 2f);
|
||||
float yExtent = Math.max(0f, (ey - sy) / 2f);
|
||||
guiBounding.setCenter(new Vector3f(sx + xExtent, sy + yExtent, 0));
|
||||
guiBounding.setXExtent(xExtent);
|
||||
guiBounding.setYExtent(yExtent);
|
||||
|
Loading…
x
Reference in New Issue
Block a user