containsPoint: function(point) {
        return point.x >= this.left && point.x < this.right && point.y >= this.bottom && point.y < this.top;
    },