123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- /**
- * @author mrdoob / 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;
- },
- setX: function ( x ) {
- this.x = x;
- return this;
- },
- setY: function ( y ) {
- this.y = y;
- return this;
- },
- copy: function ( v ) {
- this.x = v.x;
- this.y = v.y;
- return this;
- },
- addScalar: function ( s ) {
- this.x += s;
- this.y += s;
- return this;
- },
- add: function ( a, b ) {
- this.x = a.x + b.x;
- this.y = a.y + b.y;
- return this;
- },
- addSelf: function ( v ) {
- this.x += v.x;
- this.y += v.y;
- return this;
- },
- sub: function ( a, b ) {
- this.x = a.x - b.x;
- this.y = a.y - b.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;
- },
- minSelf: function ( v ) {
- if ( this.x > v.x ) {
- this.x = v.x;
- }
- if ( this.y > v.y ) {
- this.y = v.y;
- }
- return this;
- },
- maxSelf: function ( v ) {
- if ( this.x < v.x ) {
- this.x = v.x;
- }
- if ( this.y < v.y ) {
- this.y = v.y;
- }
- return this;
- },
- clampSelf: function ( min, max ) {
- // This function assumes min < max, if this assumption isn't true it will not operate correctly
- if ( this.x < min.x ) {
- this.x = min.x;
- } else if ( this.x > max.x ) {
- this.x = max.x;
- }
- if ( this.y < min.y ) {
- this.y = min.y;
- } else if ( this.y > max.y ) {
- this.y = max.y;
- }
- 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 ) );
- },
- clone: function () {
- return new THREE.Vector2( this.x, this.y );
- }
- };
|