OpenShot Library | libopenshot
0.3.3
|
Header file for the Keyframe class. More...
Go to the source code of this file.
Classes | |
class | openshot::Keyframe |
A Keyframe is a collection of Point instances, which is used to vary a number or property over time. More... | |
Namespaces | |
openshot | |
This namespace is the default namespace for all code in the openshot library. | |
Functions | |
double | openshot::InterpolateBetween (Point const &left, Point const &right, double target, double allowed_error) |
Interpolate two points using the right Point's interpolation method. More... | |
double | openshot::InterpolateBezierCurve (Point const &left, Point const &right, double const target, double const allowed_error) |
Bezier interpolation between two points. More... | |
double | openshot::InterpolateLinearCurve (Point const &left, Point const &right, double const target) |
Linear interpolation between two points. More... | |
bool | openshot::IsPointBeforeX (Point const &p, double const x) |
Check if the X coordinate of a given Point is lower than a given value. More... | |