KCarlile / guitar-diagrams-js

Open source JavaScript library for drawing guitar chords and scales on an HTML5 canvas.
https://demo.kcarlile.com/guitar-diagrams-js/
GNU General Public License v3.0
0 stars 0 forks source link

Fix scaling issues #4

Closed KCarlile closed 3 months ago

KCarlile commented 3 months ago

Background

Scaling is done via the this.#scale() function, but when and where to do this is complicated. Because of (apparent) limitations with canvas, the entire canvas cannot be scaled without redrawing, but redrawing requires scaling everything.

Questions

Acceptance Criteria

Approach

KCarlile commented 3 months ago

This is fixed (probably...seems like it) in commit 53c2494.