gpt4 book ai didi

javascript - 使用 setLineDash 关闭虚线

转载 作者:行者123 更新时间:2023-11-28 07:10:20 26 4
gpt4 key购买 nike

努力完成这项工作。画很多线,有些是虚线,有些不是。工作几次后,它就随机出现在我身上。下面摘自代码:

var context;  // global

function drawArrow (dashed, c, x1, y1, x2, y2) {

context.setLineDash([]);
if (dashed === true) { context.setLineDash([3, 3]); }

其他文章(超过 .length = 0)建议使用 [] 来关闭虚线。

参见Marching ant effect curves using setLineDash

Toggle setLineDash()

最佳答案

我使用它来工作

ctx.setLineDash([]);

if(dashed == true) {
ctx.setLineDash([5, 2]);
}

关于javascript - 使用 setLineDash 关闭虚线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31371185/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com