﻿(function ()
{
	var window = this, undefined;

	window["Geo"] = {
		// *** Constants ***

		SIZE_X: 49,
		SIZE_Y: 41,

		// *** Variables ***

		// *** Functions ***

		// Transforms box landscape coordinates into output coordinates
		transformBox: function (x, y)
		{
			return this.transformPixel(this.SIZE_X * x, this.SIZE_Y * y);
		},

		// Transforms landscape coordinates into output coordinates
		transformPixel: function (x, y)
		{
			return { x:x - Math.round(y / 2.16), y:-(y + Math.round(x / 3.06)) };
		}
	}
})();
