Sha256: 1cb123ba94c98938c8961d6d2739f8081a34a258ec7e1d1e4336fdad62396fbf
Contents?: true
Size: 1.39 KB
Versions: 4
Compression:
Stored size: 1.39 KB
Contents
/** * Math.EPSILON = 0.00001 * This is a very small number, used for testing fuzzy equality with floats due to * floating point imprecision. **/ Math.EPSILON = Math.EPSILON || 0.00001; /** * Math * Defines math-related helper functions. **/ /** * Math.radToDeg(rad) -> Number * Helper to convert radians to degrees. **/ Math.radToDeg = Math.radToDeg || function(rad) { return rad * 180.0 / Math.PI; }; /** alias of: Math.radToDeg * Math.radToDeg(rad) -> Number * Helper to convert radians to degrees. **/ Math.rad2deg = Math.rad2deg || Math.radToDeg; /** * Math.degToRad(deg) -> Number * Helper to convert degrees to radians. **/ Math.degToRad = Math.degToRad || function(deg) { return deg * Math.PI / 180.0; }; /** alias of: Math.degToRad * Math.deg2rad(deg) -> Number * Helper to convert degrees to radians. **/ Math.deg2rad = Math.deg2rad || Math.degToRad; /** * Math.equalish(a, b) -> Boolean * Arguments can be either scalar or vector, but must be of the same type. * Returns true if the arguments are "equal enough" after accounting for floating-point * precision loss. Returns false otherwise. **/ Math.equalish = Math.equalish || function(a, b) { if (!a.length && !b.length) return Math.abs(a - b) <= Math.EPSILON; if (a.length != b.length) return false; for (var i = 0; i < a.length; i++) if (Math.abs(a[i] - b[i]) > Math.EPSILON) return false; return true; };
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
jax-0.0.0.9 | src/jax/core/math.js |
jax-0.0.0.8 | src/jax/core/math.js |
jax-0.0.0.7 | src/jax/core/math.js |
jax-0.0.0.6 | src/jax/core/math.js |