dispmap/svfigure.h
Andrey Tkachenko 826af318d3 point cloud
2014-07-25 18:44:53 +04:00

22 lines
365 B
C++

#ifndef SVFIGURE_H
#define SVFIGURE_H
#include "svpoint.h"
#include "svcurve.h"
class SvFigure
{
protected:
QColor m_color;
QList<SvCurve*> m_curves;
public:
SvFigure(SvCurve *curve);
void addCurve(SvCurve *curve){m_curves.pop_back(curve); }
SvCurve *findCurveByPoint();
SvFigure split(SvPoint *point);
};
#endif // SVFIGURE_H