2019-06-26 00:14:52 +03:00

32 lines
1.0 KiB
C++

/*
* Copyright (c) 2018 Samsung Electronics Co., Ltd. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include<iostream>
#include "vinterpolator.h"
int main()
{
VInterpolator ip({0.667, 1}, {0.333 , 0});
for (float i = 0.0 ; i < 1.0 ; i+=0.05) {
std::cout<<ip.value(i)<<"\t";
}
std::cout<<std::endl;
return 0;
}