##// END OF EJS Templates
Add the time controller.
Add the time controller.

File last commit:

r177:4c64b786fec1
r190:c3e91a6962e0
Show More
ScalarSeries.cpp
13 lines | 424 B | text/x-c | CppLexer
#include <Data/ScalarSeries.h>
ScalarSeries::ScalarSeries(int size, Unit xAxisUnit, Unit valuesUnit)
: DataSeries{std::make_shared<ArrayData<1> >(size), std::move(xAxisUnit),
std::make_shared<ArrayData<1> >(size), std::move(valuesUnit)}
{
}
void ScalarSeries::setData(int index, double x, double value) noexcept
{
xAxisData()->setData(index, x);
valuesData()->setData(index, value);
}