//Creative Department by DH v1.0
/*
	An object which captures the basic attributes of a point.
*/
function Point () {
    this.x = 0;
    this.y = 0;
}
Point.prototype.setX = function (newX) {
    this.x = newX;
};
Point.prototype.setY = function (newY) {
    this.y = newY;
};
Point.prototype.getX = function () {
    return this.x;
};
Point.prototype.getY = function () {
    return this.y;
};
