summaryrefslogtreecommitdiff
path: root/render.js
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2024-07-06 17:46:43 -0500
committersanine <sanine.not@pm.me>2024-07-06 17:46:43 -0500
commitf747a43eb9d410be0fe4e2cb6e340db9f949fbba (patch)
tree970ee7ade68438cf6a4c24c33989806e748a0917 /render.js
parent2a2dadfb9739874044bdcc20cf6152115a04bc07 (diff)
add basic style
Diffstat (limited to 'render.js')
-rw-r--r--render.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/render.js b/render.js
index be3bc8e..5fde9d1 100644
--- a/render.js
+++ b/render.js
@@ -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]));