mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
bd99027852
- Added MinimapController that displays a frame on the animated preview when zoomed in - Added bounds for the offset to make sure it doesn't go crazy - Added new utility Math.js with a minmax function - TODO : the minimap controller has a lot of dependencies, see if could be cleaned up - TODO : DrawingController knows the size of the picture it has to render only indirectly, which makes it hard in some cases (such as boundary checking performed during setOffset)
22 lines
1.4 KiB
JavaScript
22 lines
1.4 KiB
JavaScript
(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';};
|
|
ns.AbstractRenderer.prototype.setOffset = function (x, y) {throw 'abstract method should be implemented';};
|
|
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';};
|
|
})(); |