2014-07-22 20:37:29 +04:00
|
|
|
#ifndef SVCURVE_H
|
|
|
|
#define SVCURVE_H
|
|
|
|
|
2014-07-23 20:50:12 +04:00
|
|
|
#include <QColor>
|
|
|
|
|
|
|
|
#include "svdefs.h"
|
2014-07-22 20:37:29 +04:00
|
|
|
#include "svpoint.h"
|
2014-07-23 20:50:12 +04:00
|
|
|
#include "svsimplepoint.h"
|
2014-07-22 20:37:29 +04:00
|
|
|
|
|
|
|
class SvPoint;
|
|
|
|
|
|
|
|
class SvCurve
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
SvPoint *m_ends;
|
|
|
|
SvPoint *m_points;
|
|
|
|
SvSimplePoint *m_keyPoints;
|
2014-07-23 20:50:12 +04:00
|
|
|
QColor m_leftColor;
|
|
|
|
QColor m_rightColor;
|
|
|
|
|
2014-07-22 20:37:29 +04:00
|
|
|
|
|
|
|
public:
|
|
|
|
SvCurve();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SVCURVE_H
|