(opt)
| 1666 | return; |
| 1667 | |
| 1668 | function updateBoundingRects(opt) { |
| 1669 | if (arguments.length > 0) { |
| 1670 | _currBoundingRectOpt = opt; |
| 1671 | } // If no opt, keep the last one. |
| 1672 | |
| 1673 | _currBoundingRectOpt |
| 1674 | ? buildBoundingRects(_currBoundingRectOpt) |
| 1675 | : disableBoundingRects(); |
| 1676 | } |
| 1677 | |
| 1678 | function ensureBoundingRectsFacilities() { |
| 1679 | // zr requires size non-zero. |
no test coverage detected
searching dependent graphs…