aboutsummaryrefslogtreecommitdiff
path: root/js/helper-classes/RDGE/src/core/script/math/vec2.js
diff options
context:
space:
mode:
authorKris Kowal2012-07-06 11:52:06 -0700
committerKris Kowal2012-07-06 15:01:48 -0700
commit648ee61ae84216d0236e0dbc211addc13b2cfa3a (patch)
tree8f0f55557bd0c47a84e49c1977c950645d284607 /js/helper-classes/RDGE/src/core/script/math/vec2.js
parentaedd14b18695d031f695d27dfbd94df5614495bb (diff)
downloadninja-648ee61ae84216d0236e0dbc211addc13b2cfa3a.tar.gz
Expand tabs
Diffstat (limited to 'js/helper-classes/RDGE/src/core/script/math/vec2.js')
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/math/vec2.js6
1 files changed, 3 insertions, 3 deletions
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.
34* This library contains functions for operating on 2D vectors. 34* This library contains functions for operating on 2D vectors.
35* A 2D vector can be any array containing at least 2 numeric components. 35* A 2D vector can be any array containing at least 2 numeric components.
36* All of the following are valid methods for declaring a RDGE.vec2: 36* All of the following are valid methods for declaring a RDGE.vec2:
37* var a = [0, 1]; 37* var a = [0, 1];
38* var b = RDGE.vec2.zero(); 38* var b = RDGE.vec2.zero();
39* var c = RDGE.vec2.up(); 39* var c = RDGE.vec2.up();
40*/ 40*/
41var RDGE = RDGE || {}; 41var RDGE = RDGE || {};
42RDGE.vec2 = {}; 42RDGE.vec2 = {};