(outRect: RectLike, dimIdx: number, locator: MatrixXYLocator)
| 404 | } |
| 405 | |
| 406 | getLayout(outRect: RectLike, dimIdx: number, locator: MatrixXYLocator): void { |
| 407 | const layout = this.getUnitLayoutInfo(dimIdx, locator); |
| 408 | outRect[XY[dimIdx]] = layout ? layout.xy : NaN; |
| 409 | outRect[WH[dimIdx]] = layout ? layout.wh : NaN; |
| 410 | } |
| 411 | |
| 412 | /** |
| 413 | * Get leaf cell or get level info. |
nothing calls this directly
no test coverage detected