diff options
Diffstat (limited to 'vec2.js')
| -rw-r--r-- | vec2.js | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -38,6 +38,11 @@ vec2.prototype.div = function(n){ this.a /= n this.b /= n } +vec2.normalize = function(){ + var dim = max(this.a, this.b) + this.a = this.a/dim + this.b = this.b/dim +} vec2.prototype.contains = function(n){ return this.a <= n && n <= this.b } |
