##// END OF EJS Templates
first init : ColorMapChart added to QtCharts
first init : ColorMapChart added to QtCharts

File last commit:

r0:5db0360e1259 default
r0:5db0360e1259 default
Show More
point3d.h
16 lines | 318 B | text/x-c | CLexer
winter
first init : ColorMapChart added to QtCharts
r0 #ifndef POINT3D_H
#define POINT3D_H
#include <QPointF>
class Point3D : public QPointF
{
public:
Point3D();
Point3D(qreal x, qreal y, qreal value);
inline void setValue(qreal value){this->m_value = value;}
inline qreal value(){return this->m_value;}
private:
qreal m_value;
};
#endif // POINT3D_H