diff options
Diffstat (limited to 'render.js')
-rw-r--r-- | render.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ export function drawGrid(ctx) { export function drawPath(ctx, path) { const [ start, ...line ] = path; ctx.strokeStyle = 'white'; - ctx.lineWidth = 0.02; + ctx.lineWidth = 0.04; ctx.beginPath(); ctx.moveTo(start[0], start[1]); line.forEach(p => ctx.lineTo(p[0], p[1])); |