| 195 | } |
| 196 | |
| 197 | ScaleInterpolator::ScaleInterpolator() |
| 198 | : ScaleInterpolator(1.0 /* startScale */, 1.0 /* endScale */, false /* isAutoZoom */) |
| 199 | {} |
| 200 | |
| 201 | ScaleInterpolator::ScaleInterpolator(double startScale, double endScale, bool isAutoZoom) |
| 202 | : ScaleInterpolator(0.0 /* delay */, startScale, endScale, isAutoZoom) |
nothing calls this directly
no test coverage detected