diff options
author | sanine <sanine.not@pm.me> | 2023-03-31 17:36:00 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-03-31 17:36:00 -0500 |
commit | 0587c63c26e94d26700a11bc2a9459f82f043a9c (patch) | |
tree | fa6938521d41659ca6e1877cda11c5395e97ceed /src/MapView.js | |
parent | 673e9c13aea6cd1b11f5ca3e1f6edd474bbb1a19 (diff) |
fix bug with stray stroke
Diffstat (limited to 'src/MapView.js')
-rw-r--r-- | src/MapView.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/MapView.js b/src/MapView.js index a08d6b7..44191b0 100644 --- a/src/MapView.js +++ b/src/MapView.js @@ -45,6 +45,7 @@ export class MapGrid { console.log(angle); const point = new Point(radians(angle), 0).normal(); const axis = point.cross(yAxis).normalize(); + console.log(axis); this.longitudes.push(Circle( point, axis, circleDiv )); @@ -52,6 +53,10 @@ export class MapGrid { } render(ct, view) { + ct.beginPath(); + ct.arc(0, 0, 1, 0, 2*Math.PI); + ct.stroke(); + for (let latitude of this.latitudes) { latitude.render(ct, view); } |