速度的0.1和10是根据什么得出的?
if (v < 0.1) { resultLineWidth = 30; } else if (v > 10) { resultLineWidth = 1; } else { resultLineWidth = 30 - (v - 0.1) / (10 - 0.1) * (30 - 1) }
直接和 0.1和 10 比较,这两个数值是怎么得出来的呢
if (v < 0.1) { resultLineWidth = 30; } else if (v > 10) { resultLineWidth = 1; } else { resultLineWidth = 30 - (v - 0.1) / (10 - 0.1) * (30 - 1) }
直接和 0.1和 10 比较,这两个数值是怎么得出来的呢
2021-05-25
举报