

function Point( x, y )
{
    this.x = x;
    this.y = y;
}

Point.prototype =
{
    x: 0,
    y: 0
};


