https://developer.mozilla.org/en-US/docs/Web/API/CanvasRende...
context.moveTo(x,y);
context.lineTo(x,y);
context.closePath();Very cool btw
E.g. "rasterization line" leads you to https://en.m.wikipedia.org/wiki/Bresenham%27s_line_algorithm
Does it redraw the whole canvas when an update is made* to a single line when there are several other lines on the canvas?
*edit for spelling mistakes