2013-11-01 18:39:42 +04:00
|
|
|
(function () {
|
|
|
|
var ns = $.namespace('pskl.rendering');
|
|
|
|
|
|
|
|
ns.AbstractRenderer = function () {};
|
|
|
|
|
2013-11-15 03:32:18 +04:00
|
|
|
ns.AbstractRenderer.prototype.clear = Constants.ABSTRACT_FUNCTION;
|
2013-11-01 18:39:42 +04:00
|
|
|
|
2013-11-15 03:32:18 +04:00
|
|
|
ns.AbstractRenderer.prototype.getCoordinates = Constants.ABSTRACT_FUNCTION;
|
2013-11-01 18:39:42 +04:00
|
|
|
|
2013-11-15 03:32:18 +04:00
|
|
|
ns.AbstractRenderer.prototype.setGridEnabled = Constants.ABSTRACT_FUNCTION;
|
|
|
|
ns.AbstractRenderer.prototype.isGridEnabled = Constants.ABSTRACT_FUNCTION;
|
2013-11-01 18:39:42 +04:00
|
|
|
|
2013-11-15 03:32:18 +04:00
|
|
|
ns.AbstractRenderer.prototype.setZoom = Constants.ABSTRACT_FUNCTION;
|
|
|
|
ns.AbstractRenderer.prototype.getZoom = Constants.ABSTRACT_FUNCTION;
|
2013-11-01 18:39:42 +04:00
|
|
|
|
2013-11-15 03:32:18 +04:00
|
|
|
ns.AbstractRenderer.prototype.moveOffset = Constants.ABSTRACT_FUNCTION;
|
|
|
|
ns.AbstractRenderer.prototype.setOffset = Constants.ABSTRACT_FUNCTION;
|
|
|
|
ns.AbstractRenderer.prototype.getOffset = Constants.ABSTRACT_FUNCTION;
|
2013-11-01 18:39:42 +04:00
|
|
|
|
2013-11-15 03:32:18 +04:00
|
|
|
ns.AbstractRenderer.prototype.setDisplaySize = Constants.ABSTRACT_FUNCTION;
|
|
|
|
ns.AbstractRenderer.prototype.getDisplaySize = Constants.ABSTRACT_FUNCTION;
|
2013-11-01 18:39:42 +04:00
|
|
|
})();
|