diff options
author | sanine <sanine.not@pm.me> | 2024-07-06 17:46:43 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2024-07-06 17:46:43 -0500 |
commit | f747a43eb9d410be0fe4e2cb6e340db9f949fbba (patch) | |
tree | 970ee7ade68438cf6a4c24c33989806e748a0917 /render.js | |
parent | 2a2dadfb9739874044bdcc20cf6152115a04bc07 (diff) |
add basic style
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])); |