You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Keyframe: Replace pair vector w/ CoordinateVector
This commit is contained in:
@@ -506,10 +506,10 @@ TEST(Point_Vector_Constructor)
|
||||
CHECK_CLOSE(30.0f, k1.GetValue(10), 0.0001);
|
||||
}
|
||||
|
||||
TEST(Pair_Vector_Constructor)
|
||||
TEST(Coordinate_Vector_Constructor)
|
||||
{
|
||||
std::vector<std::pair<double,double>> coordinates{
|
||||
{1, 100}, {10, 500}, {1000, 80000}
|
||||
std::vector<Coordinate> coordinates{
|
||||
Coordinate(1, 100), Coordinate(10, 500), Coordinate(1000, 80000)
|
||||
};
|
||||
Keyframe k1(coordinates);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user