| 32 | using namespace std; |
| 33 | |
| 34 | struct Func { |
| 35 | double a_x; |
| 36 | double b_x; |
| 37 | double c_x; |
| 38 | double d_x; |
| 39 | double a_y; |
| 40 | double b_y; |
| 41 | double c_y; |
| 42 | double d_y; |
| 43 | double h; |
| 44 | }; |
| 45 | class Spline { |
| 46 | public: |
| 47 | vector<Point2f> splineInterpTimes(const vector<Point2f> &tmp_line, int times); |
nothing calls this directly
no outgoing calls
no test coverage detected