(hlinesInGap)
| 9331 | let totalHeight = 0; // Set a position for \hline(s) at the top of the array, if any. |
| 9332 | |
| 9333 | function setHLinePos(hlinesInGap) { |
| 9334 | for (let i = 0; i < hlinesInGap.length; ++i) { |
| 9335 | if (i > 0) { |
| 9336 | totalHeight += 0.25; |
| 9337 | } |
| 9338 | |
| 9339 | hlines.push({ |
| 9340 | pos: totalHeight, |
| 9341 | isDashed: hlinesInGap[i] |
| 9342 | }); |
| 9343 | } |
| 9344 | } |
| 9345 | |
| 9346 | setHLinePos(hLinesBeforeRow[0]); |
| 9347 |