Compare 2 floating point numbers for equality
| 1316 | |
| 1317 | // Compare 2 floating point numbers for equality |
| 1318 | bool Clip::isNear(double a, double b) |
| 1319 | { |
| 1320 | return fabs(a - b) < 0.000001; |
| 1321 | } |
| 1322 | |
| 1323 | // Apply keyframes to the source frame (if any) |
| 1324 | void Clip::apply_keyframes(std::shared_ptr<Frame> frame, QSize timeline_size) { |
nothing calls this directly
no outgoing calls
no test coverage detected