| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- /**
- * @author mr.doob / http://mrdoob.com/
- * @author philogb / http://blog.thejit.org/
- * @author egraether / http://egraether.com/
- * @author zz85 / http://www.lab4games.net/zz85/blog
- */
- THREE.Vector2 = function ( x, y ) {
- this.x = x || 0;
- this.y = y || 0;
- };
- THREE.Vector2.prototype = {
- constructor: THREE.Vector2,
- set: function ( x, y ) {
- this.x = x;
- this.y = y;
- return this;
- },
- copy: function ( v ) {
- this.x = v.x;
- this.y = v.y;
- return this;
- },
- clone: function () {
- return new THREE.Vector2( this.x, this.y );
- },
- add: function ( v1, v2 ) {
- this.x = v1.x + v2.x;
- this.y = v1.y + v2.y;
- return this;
- },
- addSelf: function ( v ) {
- this.x += v.x;
- this.y += v.y;
- return this;
- },
- sub: function ( v1, v2 ) {
- this.x = v1.x - v2.x;
- this.y = v1.y - v2.y;
- return this;
- },
- subSelf: function ( v ) {
- this.x -= v.x;
- this.y -= v.y;
- return this;
- },
- multiplyScalar: function ( s ) {
- this.x *= s;
- this.y *= s;
- return this;
- },
- divideScalar: function ( s ) {
- if ( s ) {
- this.x /= s;
- this.y /= s;
- } else {
- this.set( 0, 0 );
- }
- return this;
- },
- negate: function() {
- return this.multiplyScalar( -1 );
- },
- dot: function ( v ) {
- return this.x * v.x + this.y * v.y;
- },
- lengthSq: function () {
- return this.x * this.x + this.y * this.y;
- },
- length: function () {
- return Math.sqrt( this.lengthSq() );
- },
- normalize: function () {
- return this.divideScalar( this.length() );
- },
- distanceTo: function ( v ) {
- return Math.sqrt( this.distanceToSquared( v ) );
- },
- distanceToSquared: function ( v ) {
- var dx = this.x - v.x, dy = this.y - v.y;
- return dx * dx + dy * dy;
- },
- setLength: function ( l ) {
- return this.normalize().multiplyScalar( l );
- },
- lerpSelf: function ( v, alpha ) {
- this.x += ( v.x - this.x ) * alpha;
- this.y += ( v.y - this.y ) * alpha;
- return this;
- },
- equals: function( v ) {
- return ( ( v.x === this.x ) && ( v.y === this.y ) );
- },
- isZero: function () {
- return ( this.lengthSq() < 0.0001 /* almostZero */ );
- }
- };
|