我很难找到一种好的方法来限制我的鼠标只能点击画布中预先存在的线条(笔划宽度为 3)
我需要知道的
- 如何限制鼠标只能单击预先存在的行,单击时添加一个点
用这个函数画线
function createLine(startX:Float, startY:Float, endX:Float, endY:Float)
{
surface.beginPath();
surface.moveTo(startX, startY);
surface.lineTo(endX, endY);
surface.closePath();
surface.strokeStyle = '#ffffff';
surface.lineWidth = 2;
surface.stroke();
}
我在 haxe 工作,但是 JS 中的解决方案很好
提前致谢。