mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
resizable axis based on zoom
This commit is contained in:
parent
7467353e70
commit
c10af4623e
@ -123,9 +123,9 @@ const Startup = (() => {
|
||||
currFile.layers.push(currFile.checkerBoard);
|
||||
currFile.layers.push(currFile.currentLayer);
|
||||
currFile.layers.push(currFile.TMPLayer);
|
||||
currFile.layers.push(currFile.pixelGrid);
|
||||
currFile.layers.push(currFile.hSymmetricLayer);
|
||||
currFile.layers.push(currFile.vSymmetricLayer);
|
||||
currFile.layers.push(currFile.pixelGrid);
|
||||
currFile.layers.push(currFile.VFXLayer);
|
||||
}
|
||||
}
|
||||
|
@ -28,15 +28,26 @@ class HSymmetryLayer extends Layer {
|
||||
// get toggle h axis button
|
||||
let toggleButton = document.getElementById("toggle-h-symmetry-button");
|
||||
toggleButton.innerHTML = "Hide Horizontal Symmetry";
|
||||
|
||||
this.isEnabled = true;
|
||||
this.canvas.style.display = "inline-block";
|
||||
}
|
||||
|
||||
initPaint() {
|
||||
this.lineDistance = 5;
|
||||
this.fillAxis();
|
||||
}
|
||||
|
||||
repaint(factor) {
|
||||
this.lineDistance += factor;
|
||||
this.fillAxis();
|
||||
}
|
||||
|
||||
normalPaint() {
|
||||
this.lineDistance = 10;
|
||||
this.fillAxis();
|
||||
}
|
||||
|
||||
/**
|
||||
* Shows or hides axis depending on its current visibility
|
||||
* (triggered by the show h symmetry button in the top menu)
|
||||
|
@ -30,6 +30,12 @@ class VSymmetryLayer extends Layer {
|
||||
toggleButton.innerHTML = "Hide Vertical Axis";
|
||||
this.isEnabled = true;
|
||||
this.canvas.style.display = "inline-block";
|
||||
this.initPaint();
|
||||
}
|
||||
|
||||
initPaint() {
|
||||
this.lineDistance = 5;
|
||||
this.fillAxis();
|
||||
}
|
||||
|
||||
repaint(factor) {
|
||||
@ -37,6 +43,11 @@ class VSymmetryLayer extends Layer {
|
||||
this.fillAxis();
|
||||
}
|
||||
|
||||
normalPaint() {
|
||||
this.lineDistance = 10;
|
||||
this.fillAxis();
|
||||
}
|
||||
|
||||
/**
|
||||
* Shows or hides axis depending on its current visibility
|
||||
* (triggered by the show h symmetry button in the top menu)
|
||||
|
@ -60,18 +60,28 @@ class ZoomTool extends Tool {
|
||||
|
||||
// Adjust pixel grid thickness
|
||||
if (zoomed) {
|
||||
if (currFile.zoom <= 7)
|
||||
|
||||
if (currFile.zoom <= 7) {
|
||||
currFile.pixelGrid.disablePixelGrid();
|
||||
currFile.hSymmetricLayer.repaint((currFile.zoom - prevZoom) * 1.8);
|
||||
currFile.vSymmetricLayer.repaint((currFile.zoom - prevZoom) * 1.8);
|
||||
}
|
||||
else if (currFile.zoom >= 20 && mode == 'in') {
|
||||
currFile.pixelGrid.enablePixelGrid();
|
||||
currFile.pixelGrid.repaintPixelGrid((currFile.zoom - prevZoom) * 0.6);
|
||||
currFile.hSymmetricLayer.normalPaint();
|
||||
currFile.vSymmetricLayer.normalPaint();
|
||||
}
|
||||
else if (prevZoom >= 20 && mode == 'out') {
|
||||
currFile.pixelGrid.enablePixelGrid();
|
||||
currFile.pixelGrid.repaintPixelGrid((currFile.zoom - prevZoom) * 0.6);
|
||||
currFile.hSymmetricLayer.normalPaint();
|
||||
currFile.vSymmetricLayer.normalPaint();
|
||||
}
|
||||
else {
|
||||
currFile.pixelGrid.enablePixelGrid();
|
||||
currFile.hSymmetricLayer.normalPaint();
|
||||
currFile.vSymmetricLayer.normalPaint();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user