Last active
October 13, 2015 15:56
-
-
Save timohausmann/9603675 to your computer and use it in GitHub Desktop.
Vector JS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Vector Lib | |
* @author Timo Hausmann <[email protected]> | |
* @url https://gist.github.com/timohausmann/9603675 | |
* @licence MIT | |
* @version 1.0 | |
*/ | |
function Vector(x, y) { | |
this.x = x, | |
this.y = y; | |
} | |
Vector.prototype = { | |
get : function() { | |
return new Vector( this.x, this.y ); | |
}, | |
add : function(v) { | |
this.x += v.x; | |
this.y += v.y; | |
}, | |
sub : function(v) { | |
this.x -= v.x; | |
this.y -= v.y; | |
}, | |
mult : function(val) { | |
this.x *= val; | |
this.y *= val; | |
}, | |
div : function(val) { | |
this.x /= val; | |
this.y /= val; | |
}, | |
mag : function() { | |
return Math.sqrt( (this.x*this.x) + (this.y*this.y) ); | |
}, | |
normalize : function() { | |
var mag = this.mag(); | |
if( mag === 0 ) return; | |
this.div( mag ); | |
}, | |
limit : function(max) { | |
if( this.mag() > max ) { | |
this.normalize(); | |
this.mult( max ); | |
} | |
} | |
}; | |
Vector.random2D = function() { | |
var v = new Vector( -1+(Math.random()*2), -1+(Math.random()*2) ); | |
v.normalize(); | |
return v; | |
} | |
Vector.degreeToVector = function(degree) { | |
var TO_RAD = Math.PI / 180, | |
v = new Vector( Math.cos(degree*TO_RAD), Math.sin(degree*TO_RAD) ); | |
v.normalize(); | |
return v; | |
} | |
Vector.dot = function( v1, v2 ) { | |
return (v1.x*v2.x)+(v2.y*v2.y); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment