1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef _QV_SPHERE_ #define _QV_SPHERE_ #include <QvSFFloat.h> #include <QvSubNode.h> class QvSphere : public QvNode { QV_NODE_HEADER(QvSphere); public: // Fields QvSFFloat radius; // Radius of sphere }; #endif /* _QV_SPHERE_ */