(data: any[], drawSteps: Drawers.DrawStep[])
| 42 | public static OPTIMIZE_MEMOIZE_PROJECTORS: boolean = false; |
| 43 | |
| 44 | public static getTotalDrawTime(data: any[], drawSteps: Drawers.DrawStep[]) { |
| 45 | return drawSteps.reduce((time, drawStep) => time + drawStep.animator.totalTime(data.length), 0); |
| 46 | } |
| 47 | |
| 48 | public static applyDrawSteps(drawSteps: DrawStep[], dataset: Dataset): AppliedDrawStep[] { |
| 49 | const appliedDrawSteps: AppliedDrawStep[] = drawSteps.map((drawStep) => { |
no test coverage detected