dispmap/svpoint.cpp
Andrey Tkachenko b6b4bf3eb6 Fixed seg fault
2014-07-29 15:22:01 +04:00

18 lines
210 B
C++

#include "svpoint.h"
SvPoint::SvPoint()
{
}
SvPoint::SvPoint(SvPoint &point)
{
m_px = point.x();
m_py = point.y();
}
void SvPoint::addCurve(SvCurve *curve)
{
m_curves[m_curveCount++] = curve;
}