function Point(nX, nY)
{
    this.x = nX;
    this.y = nY;
}
