function Vector() {}
Object.extend(Vector,{
	x:Number(),y:Number(),
	vx:function(px,py){this.x=px;this.y=py;return{x:px,y:py};},
	Diff:function(vA,vB){return this.vx(vB.x-vA.x,vB.y-vA.y);}
});