2013-11-01 18:39:42 +04:00
|
|
|
(function () {
|
|
|
|
var ns = $.namespace('pskl.rendering');
|
|
|
|
|
|
|
|
ns.AbstractRenderer = function () {};
|
|
|
|
|
|
|
|
ns.AbstractRenderer.prototype.clear = function () {throw 'abstract method should be implemented';};
|
|
|
|
|
|
|
|
ns.AbstractRenderer.prototype.getCoordinates = function (x, y) {throw 'abstract method should be implemented';};
|
|
|
|
|
|
|
|
ns.AbstractRenderer.prototype.setGridEnabled = function (b) {throw 'abstract method should be implemented';};
|
|
|
|
ns.AbstractRenderer.prototype.isGridEnabled = function () {throw 'abstract method should be implemented';};
|
|
|
|
|
|
|
|
ns.AbstractRenderer.prototype.setZoom = function (zoom) {throw 'abstract method should be implemented';};
|
|
|
|
ns.AbstractRenderer.prototype.getZoom = function () {throw 'abstract method should be implemented';};
|
|
|
|
|
|
|
|
ns.AbstractRenderer.prototype.moveOffset = function (x, y) {throw 'abstract method should be implemented';};
|
2013-11-02 02:11:11 +04:00
|
|
|
ns.AbstractRenderer.prototype.setOffset = function (x, y) {throw 'abstract method should be implemented';};
|
2013-11-01 18:39:42 +04:00
|
|
|
ns.AbstractRenderer.prototype.getOffset = function () {throw 'abstract method should be implemented';};
|
|
|
|
|
|
|
|
ns.AbstractRenderer.prototype.setDisplaySize = function (w, h) {throw 'abstract method should be implemented';};
|
|
|
|
ns.AbstractRenderer.prototype.getDisplaySize = function () {throw 'abstract method should be implemented';};
|
|
|
|
})();
|