var Vector2 = function(x1,y1){
this.x = x1;
this.y = y1;
}
Vector2.prototype.set = function(a,b){
this.x = a;
this.y = b;
暖阳_
相关分类