pointvec/sources/scripts/pos.js
Devine Lu Linvega 6b8e08e41f Almost there
2017-11-05 14:52:05 +14:00

15 lines
196 B
JavaScript

function Pos(x,y)
{
this.x = x;
this.y = y;
this.toString = function()
{
return x+","+y;
}
this.sub = function(pos2)
{
return new Pos(this.x - pos2.x,this.y - pos2.y)
}
}