dispmap/svcurve.cpp

16 lines
164 B
C++
Raw Normal View History

2014-07-22 20:37:29 +04:00
#include "svcurve.h"
SvCurve::SvCurve()
{
}
2014-07-25 18:44:11 +04:00
void SvCurve::addPoint(SvPoint *point)
{
m_points.push_back(point);
}
SvCurve *SvCurve::cut(SvPoint *point)
{
}