Skip to content

Commit

Permalink
Better float min/max constants from Terrance - xeolabs#76
Browse files Browse the repository at this point in the history
  • Loading branch information
xeolabs committed Apr 17, 2011
1 parent a38cab5 commit 08c1ed6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scenejs/core/math.js
Original file line number Diff line number Diff line change
Expand Up @@ -1490,9 +1490,9 @@ SceneJS._math_Plane3 = function (normal, offset, normalize) {
};

/** @private */
SceneJS._math_MAX_DOUBLE = 100000000;
SceneJS._math_MAX_DOUBLE = Number.POSITIVE_INFINITY;
/** @private */
SceneJS._math_MIN_DOUBLE = -100000000;
SceneJS._math_MIN_DOUBLE = Number.NEGATIVE_INFINITY;

/** @private
*
Expand Down

0 comments on commit 08c1ed6

Please sign in to comment.