aboutsummaryrefslogtreecommitdiff
path: root/js/helper-classes/RDGE/src/core/script/math/vec2.js
diff options
context:
space:
mode:
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 = {};