﻿


function Point(x, y)
{
	this.X = x == null ? 0 : parseInt(x);
	this.Y = y == null ? 0 : parseInt(y);
}
