#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; }