This commit is contained in:
Devine Lu Linvega
2017-11-05 13:59:11 +14:00
parent 910fba4432
commit 6a4dae83ae
16 changed files with 299 additions and 205 deletions

15
scripts/pos.js Normal file
View File

@@ -0,0 +1,15 @@
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)
}
}