(point)
| 130572 | } |
| 130573 | } |
| 130574 | function index(point) { |
| 130575 | return point[0] * 2 + point[1] * (dx + 1) * 4; |
| 130576 | } |
| 130577 | function smoothLinear(ring, values, value) { |
| 130578 | ring.forEach((point)=>{ |
| 130579 | var x = point[0], y = point[1], xt = x | 0, yt = y | 0, v0, v1 = values[yt * dx + xt]; |