From 648ee61ae84216d0236e0dbc211addc13b2cfa3a Mon Sep 17 00:00:00 2001 From: Kris Kowal Date: Fri, 6 Jul 2012 11:52:06 -0700 Subject: Expand tabs --- js/helper-classes/RDGE/src/core/script/math/vec2.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'js/helper-classes/RDGE/src/core/script/math/vec2.js') diff --git a/js/helper-classes/RDGE/src/core/script/math/vec2.js b/js/helper-classes/RDGE/src/core/script/math/vec2.js index 0a5b832d..a003130d 100755 --- a/js/helper-classes/RDGE/src/core/script/math/vec2.js +++ b/js/helper-classes/RDGE/src/core/script/math/vec2.js @@ -34,9 +34,9 @@ POSSIBILITY OF SUCH DAMAGE. * This library contains functions for operating on 2D vectors. * A 2D vector can be any array containing at least 2 numeric components. * All of the following are valid methods for declaring a RDGE.vec2: -* var a = [0, 1]; -* var b = RDGE.vec2.zero(); -* var c = RDGE.vec2.up(); +* var a = [0, 1]; +* var b = RDGE.vec2.zero(); +* var c = RDGE.vec2.up(); */ var RDGE = RDGE || {}; RDGE.vec2 = {}; -- cgit v1.2.3 From 04343eda8c2f870b0da55cfdc8003c99fe1cc4de Mon Sep 17 00:00:00 2001 From: Kris Kowal Date: Fri, 6 Jul 2012 11:53:10 -0700 Subject: Remove trailing spaces --- js/helper-classes/RDGE/src/core/script/math/vec2.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'js/helper-classes/RDGE/src/core/script/math/vec2.js') diff --git a/js/helper-classes/RDGE/src/core/script/math/vec2.js b/js/helper-classes/RDGE/src/core/script/math/vec2.js index a003130d..e5c7df06 100755 --- a/js/helper-classes/RDGE/src/core/script/math/vec2.js +++ b/js/helper-classes/RDGE/src/core/script/math/vec2.js @@ -31,8 +31,8 @@ POSSIBILITY OF SUCH DAMAGE. /** * RDGE.vec2 = {} -* This library contains functions for operating on 2D vectors. -* A 2D vector can be any array containing at least 2 numeric components. +* This library contains functions for operating on 2D vectors. +* A 2D vector can be any array containing at least 2 numeric components. * All of the following are valid methods for declaring a RDGE.vec2: * var a = [0, 1]; * var b = RDGE.vec2.zero(); @@ -50,7 +50,7 @@ RDGE.vec2.string = function (v) { /** * RDGE.vec2.verify -* This function is provided for debugging purposes only. It is not recommended +* This function is provided for debugging purposes only. It is not recommended * to be used in performance critical areas of the code. */ RDGE.vec2.verify = function (v) { -- cgit v1.2.3 From 3644cb6def4f681c99959e5729e78ea353441fad Mon Sep 17 00:00:00 2001 From: Kris Kowal Date: Fri, 6 Jul 2012 12:34:53 -0700 Subject: Normalize to unix line terminators --- .../RDGE/src/core/script/math/vec2.js | 432 ++++++++++----------- 1 file changed, 216 insertions(+), 216 deletions(-) (limited to 'js/helper-classes/RDGE/src/core/script/math/vec2.js') diff --git a/js/helper-classes/RDGE/src/core/script/math/vec2.js b/js/helper-classes/RDGE/src/core/script/math/vec2.js index e5c7df06..c62e57ab 100755 --- a/js/helper-classes/RDGE/src/core/script/math/vec2.js +++ b/js/helper-classes/RDGE/src/core/script/math/vec2.js @@ -1,216 +1,216 @@ -/* -Copyright (c) 2012, Motorola Mobility, Inc -All Rights Reserved. -BSD License. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - Neither the name of Motorola Mobility nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - */ - - -/** -* RDGE.vec2 = {} -* This library contains functions for operating on 2D vectors. -* A 2D vector can be any array containing at least 2 numeric components. -* All of the following are valid methods for declaring a RDGE.vec2: -* var a = [0, 1]; -* var b = RDGE.vec2.zero(); -* var c = RDGE.vec2.up(); -*/ -var RDGE = RDGE || {}; -RDGE.vec2 = {}; - -/** -* RDGE.vec2.string -*/ -RDGE.vec2.string = function (v) { - return "{ " + v[0] + ", " + v[1] + " }"; -}; - -/** -* RDGE.vec2.verify -* This function is provided for debugging purposes only. It is not recommended -* to be used in performance critical areas of the code. -*/ -RDGE.vec2.verify = function (v) { - if (v == undefined || v.length == undefined || v.length < 2) { - return false; - } - - if (typeof (v[0]) != "number" || typeof (v[1]) != "number") { - return false; - } - - return true; -}; - -/** -* RDGE.vec2.copy -*/ -RDGE.vec2.copy = function (v) { - if (v.length == undefined) { - return [v, v]; - } - - return [v[0], v[1]]; -}; - -/** -* RDGE.vec2.inplace_copy -*/ -RDGE.vec2.inplace_copy = function (dst, src) { - dst[0] = src[0]; - dst[1] = src[1]; -}; - -/** -* RDGE.vec2.zero -*/ -RDGE.vec2.zero = function () { - return [0.0, 0.0]; -}; - -/** -* RDGE.vec2.up -*/ -RDGE.vec2.up = function () { - return [0.0, 1.0]; -}; - -/** -* RDGE.vec2.right -*/ -RDGE.vec2.right = function () { - return [1.0, 0.0]; -}; - -/** -* RDGE.vec2.add -*/ -RDGE.vec2.add = function (a, b) { - return [a[0] + b[0], a[1] + b[1]]; -}; -/** -* RDGE.vec2.sub -*/ -RDGE.vec2.sub = function (a, b) { - return [a[0] - b[0], a[1] - b[1]]; -}; - -/** -* RDGE.vec2.mul -*/ -RDGE.vec2.mul = function (a, b) { - return [a[0] * b[0], a[1] * b[1]]; -}; - -/** -* RDGE.vec2.addMul -*/ -RDGE.vec2.addMul = function (a, b, s) { - if (s.length != undefined && s.length >= 2) { - return [a[0] + b[0] * s[0], a[1] + b[1] * s[1]]; - } else { - return [a[0] + b[0] * s, a[1] + b[1] * s]; - } -}; - -/** -* RDGE.vec2.scale -*/ -RDGE.vec2.scale = function (v, s) { - if (s.length != undefined && s.length >= 2) { - return [v[0] * s[0], v[1] * s[1]]; - } else { - return [v[0] * s, v[1] * s]; - } -}; - -/** -* RDGE.vec2.negate -*/ -RDGE.vec2.negate = function (v) { - return [-v[0], -v[1]]; -}; - -/** -* RDGE.vec2.normalize -*/ -RDGE.vec2.normalize = function (v) { - var l = Math.sqrt(v[0] * v[0], v[1] * v[1]); - if (Math.abs(1.0 - l) > 0.0001) { - var ool = 1.0 / l; - return [v[0] * ool, v[1] * ool]; - } - return v; -}; - -/** -* RDGE.vec2.dot -*/ -RDGE.vec2.dot = function (a, b) { - return a[0] * b[0] + a[1] * b[1]; -}; - -/** -* RDGE.vec2.perp -*/ -RDGE.vec2.perp = function (a) { - return [a[1], -a[0]]; -}; - -/** -* RDGE.vec2.lengthSq -*/ -RDGE.vec2.lengthSq = function (v) { - return v[0] * v[0] + v[1] * v[1]; -}; - -/** -* RDGE.vec2.length -*/ -RDGE.vec2.length = function (v) { - return Math.sqrt(v[0] * v[0] + v[1] * v[1]); -}; - -/** -* RDGE.vec2.min -*/ -RDGE.vec2.min = function (a, b) { - return [Math.min(a[0], b[0]), Math.min(a[1], b[1])]; -}; - -/** -* RDGE.vec2.max -*/ -RDGE.vec2.max = function (a, b) { - return [Math.max(a[0], b[0]), Math.max(a[1], b[1])]; -}; - -/** -* RDGE.vec2.clamp -*/ -RDGE.vec2.clamp = function (v, vmin, vmax) { - return RDGE.vec2.min(vmax, RDGE.vec2.max(v, vmin)); -}; +/* +Copyright (c) 2012, Motorola Mobility, Inc +All Rights Reserved. +BSD License. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + - Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + - Neither the name of Motorola Mobility nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + */ + + +/** +* RDGE.vec2 = {} +* This library contains functions for operating on 2D vectors. +* A 2D vector can be any array containing at least 2 numeric components. +* All of the following are valid methods for declaring a RDGE.vec2: +* var a = [0, 1]; +* var b = RDGE.vec2.zero(); +* var c = RDGE.vec2.up(); +*/ +var RDGE = RDGE || {}; +RDGE.vec2 = {}; + +/** +* RDGE.vec2.string +*/ +RDGE.vec2.string = function (v) { + return "{ " + v[0] + ", " + v[1] + " }"; +}; + +/** +* RDGE.vec2.verify +* This function is provided for debugging purposes only. It is not recommended +* to be used in performance critical areas of the code. +*/ +RDGE.vec2.verify = function (v) { + if (v == undefined || v.length == undefined || v.length < 2) { + return false; + } + + if (typeof (v[0]) != "number" || typeof (v[1]) != "number") { + return false; + } + + return true; +}; + +/** +* RDGE.vec2.copy +*/ +RDGE.vec2.copy = function (v) { + if (v.length == undefined) { + return [v, v]; + } + + return [v[0], v[1]]; +}; + +/** +* RDGE.vec2.inplace_copy +*/ +RDGE.vec2.inplace_copy = function (dst, src) { + dst[0] = src[0]; + dst[1] = src[1]; +}; + +/** +* RDGE.vec2.zero +*/ +RDGE.vec2.zero = function () { + return [0.0, 0.0]; +}; + +/** +* RDGE.vec2.up +*/ +RDGE.vec2.up = function () { + return [0.0, 1.0]; +}; + +/** +* RDGE.vec2.right +*/ +RDGE.vec2.right = function () { + return [1.0, 0.0]; +}; + +/** +* RDGE.vec2.add +*/ +RDGE.vec2.add = function (a, b) { + return [a[0] + b[0], a[1] + b[1]]; +}; +/** +* RDGE.vec2.sub +*/ +RDGE.vec2.sub = function (a, b) { + return [a[0] - b[0], a[1] - b[1]]; +}; + +/** +* RDGE.vec2.mul +*/ +RDGE.vec2.mul = function (a, b) { + return [a[0] * b[0], a[1] * b[1]]; +}; + +/** +* RDGE.vec2.addMul +*/ +RDGE.vec2.addMul = function (a, b, s) { + if (s.length != undefined && s.length >= 2) { + return [a[0] + b[0] * s[0], a[1] + b[1] * s[1]]; + } else { + return [a[0] + b[0] * s, a[1] + b[1] * s]; + } +}; + +/** +* RDGE.vec2.scale +*/ +RDGE.vec2.scale = function (v, s) { + if (s.length != undefined && s.length >= 2) { + return [v[0] * s[0], v[1] * s[1]]; + } else { + return [v[0] * s, v[1] * s]; + } +}; + +/** +* RDGE.vec2.negate +*/ +RDGE.vec2.negate = function (v) { + return [-v[0], -v[1]]; +}; + +/** +* RDGE.vec2.normalize +*/ +RDGE.vec2.normalize = function (v) { + var l = Math.sqrt(v[0] * v[0], v[1] * v[1]); + if (Math.abs(1.0 - l) > 0.0001) { + var ool = 1.0 / l; + return [v[0] * ool, v[1] * ool]; + } + return v; +}; + +/** +* RDGE.vec2.dot +*/ +RDGE.vec2.dot = function (a, b) { + return a[0] * b[0] + a[1] * b[1]; +}; + +/** +* RDGE.vec2.perp +*/ +RDGE.vec2.perp = function (a) { + return [a[1], -a[0]]; +}; + +/** +* RDGE.vec2.lengthSq +*/ +RDGE.vec2.lengthSq = function (v) { + return v[0] * v[0] + v[1] * v[1]; +}; + +/** +* RDGE.vec2.length +*/ +RDGE.vec2.length = function (v) { + return Math.sqrt(v[0] * v[0] + v[1] * v[1]); +}; + +/** +* RDGE.vec2.min +*/ +RDGE.vec2.min = function (a, b) { + return [Math.min(a[0], b[0]), Math.min(a[1], b[1])]; +}; + +/** +* RDGE.vec2.max +*/ +RDGE.vec2.max = function (a, b) { + return [Math.max(a[0], b[0]), Math.max(a[1], b[1])]; +}; + +/** +* RDGE.vec2.clamp +*/ +RDGE.vec2.clamp = function (v, vmin, vmax) { + return RDGE.vec2.min(vmax, RDGE.vec2.max(v, vmin)); +}; -- cgit v1.2.3 From fdbec324dad4ab33d97282ab021d2c1661bc097c Mon Sep 17 00:00:00 2001 From: Kris Kowal Date: Mon, 9 Jul 2012 16:27:52 -0700 Subject: BSD License --- .../RDGE/src/core/script/math/vec2.js | 23 +++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'js/helper-classes/RDGE/src/core/script/math/vec2.js') diff --git a/js/helper-classes/RDGE/src/core/script/math/vec2.js b/js/helper-classes/RDGE/src/core/script/math/vec2.js index c62e57ab..4bab755f 100755 --- a/js/helper-classes/RDGE/src/core/script/math/vec2.js +++ b/js/helper-classes/RDGE/src/core/script/math/vec2.js @@ -1,24 +1,25 @@ /* -Copyright (c) 2012, Motorola Mobility, Inc +Copyright (c) 2012, Motorola Mobility LLC. All Rights Reserved. -BSD License. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - Neither the name of Motorola Mobility nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of Motorola Mobility LLC nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -- cgit v1.2.3