From 0587c63c26e94d26700a11bc2a9459f82f043a9c Mon Sep 17 00:00:00 2001 From: sanine Date: Fri, 31 Mar 2023 17:36:00 -0500 Subject: fix bug with stray stroke --- src/MapView.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/MapView.js') 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); } -- cgit v1.2.1