Constructor which sets the default point & coordinate at X=1
| 113 | |
| 114 | // Constructor which sets the default point & coordinate at X=1 |
| 115 | Keyframe::Keyframe(double value) { |
| 116 | // Add initial point |
| 117 | AddPoint(Point(1, value)); |
| 118 | } |
| 119 | |
| 120 | // Constructor which takes a vector of Points |
| 121 | Keyframe::Keyframe(const std::vector<openshot::Point>& points) : Points(points) {}; |
no test coverage detected