var Point = Class.create({
    initialize: function(x, y) {
        this.x = x;
        this.y = y;
    },