MCPcopy
hub / github.com/apache/echarts / getBoundingRectFromMinMax

Function getBoundingRectFromMinMax

src/component/brush/visualEncoding.ts:350–357  ·  view source on GitHub ↗
(minMax: BrushDimensionMinMax[])

Source from the content-addressed store, hash-verified

348
349
350function getBoundingRectFromMinMax(minMax: BrushDimensionMinMax[]): BoundingRect {
351 return new BoundingRect(
352 minMax[0][0],
353 minMax[1][0],
354 minMax[0][1] - minMax[0][0],
355 minMax[1][1] - minMax[1][0]
356 );
357}

Callers 1

visualEncoding.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…