2013-11-25 22:00:19 +04:00
|
|
|
(function () {
|
|
|
|
var ns = $.namespace('pskl.rendering');
|
|
|
|
|
|
|
|
ns.AbstractRenderer = function () {};
|
|
|
|
|
|
|
|
ns.AbstractRenderer.prototype.clear = Constants.ABSTRACT_FUNCTION;
|
|
|
|
|
|
|
|
ns.AbstractRenderer.prototype.getCoordinates = Constants.ABSTRACT_FUNCTION;
|
|
|
|
|
2014-03-30 05:12:56 +04:00
|
|
|
ns.AbstractRenderer.prototype.setGridWidth = Constants.ABSTRACT_FUNCTION;
|
|
|
|
ns.AbstractRenderer.prototype.getGridWidth = Constants.ABSTRACT_FUNCTION;
|
2013-11-25 22:00:19 +04:00
|
|
|
|
|
|
|
ns.AbstractRenderer.prototype.setZoom = Constants.ABSTRACT_FUNCTION;
|
|
|
|
ns.AbstractRenderer.prototype.getZoom = Constants.ABSTRACT_FUNCTION;
|
|
|
|
|
|
|
|
ns.AbstractRenderer.prototype.moveOffset = Constants.ABSTRACT_FUNCTION;
|
|
|
|
ns.AbstractRenderer.prototype.setOffset = Constants.ABSTRACT_FUNCTION;
|
|
|
|
ns.AbstractRenderer.prototype.getOffset = Constants.ABSTRACT_FUNCTION;
|
|
|
|
|
|
|
|
ns.AbstractRenderer.prototype.setDisplaySize = Constants.ABSTRACT_FUNCTION;
|
|
|
|
ns.AbstractRenderer.prototype.getDisplaySize = Constants.ABSTRACT_FUNCTION;
|
|
|
|
})();
|