00001
00003
00004
00005
00006
00007
00008
00009
00010
00012
00013 #ifndef VP1CYLINDRICALGRID_H
00014 #define VP1CYLINDRICALGRID_H
00015
00016 #include "VP1Base/VP1HelperClassBase.h"
00017 #include <QtCore/QObject>
00018 #include <Inventor/SbColor4f.h>
00019 class SoSeparator;
00020
00021 class VP1CylindricalGrid : public QObject, public VP1HelperClassBase {
00022
00023 Q_OBJECT
00024
00025 public:
00026
00027 VP1CylindricalGrid( SoSeparator * attachsep,
00028 IVP1System * sys,QObject * parent = 0);
00029 virtual ~VP1CylindricalGrid();
00030
00031 public slots:
00032
00033 void setShown(bool);
00034 void setColourAndTransp(const SbColor4f&);
00035 void setExtent(const double&);
00036 void setSpacing(const double&);
00037
00038 private:
00039 class Imp;
00040 Imp * d;
00041
00042 };
00043
00044 #endif