##// END OF EJS Templates
improvements in execution time, colorbar ok, more work to do on axes,
improvements in execution time, colorbar ok, more work to do on axes,

File last commit:

r0:5db0360e1259 default
r3:ab1c9ba54a31 default
Show More
point3d.h
16 lines | 318 B | text/x-c | CLexer
#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