(point: DataPoint)
| 11 | } |
| 12 | |
| 13 | function getSize(point: DataPoint): number | undefined { |
| 14 | if (isTupleDataPoint(point)) return point[2]; |
| 15 | return point.size; |
| 16 | } |
| 17 | |
| 18 | function clampTargetPoints(targetPoints: number): number { |
| 19 | const t = Math.floor(targetPoints); |
no test coverage detected