summaryrefslogtreecommitdiffstats
path: root/src/mmscene.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mmscene.h')
-rw-r--r--src/mmscene.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mmscene.h b/src/mmscene.h
index a70321e..3940104 100644
--- a/src/mmscene.h
+++ b/src/mmscene.h
@@ -3,6 +3,7 @@
#include "glcube.h"
#include "glitem.h"
+#include "glsphere.h"
class MMScene : public GLItem
{
@@ -46,6 +47,11 @@ protected:
virtual void createCube(const QVector3D &lbb, const QVector3D &rtf);
/**
+ * @brief createSphere Creates a sphere and apends it for drawing,
+ */
+ void createSphere();
+
+ /**
* @brief createF Creates an 'F' with cubes.
* @param height The height of the 'F'.
*/
@@ -60,6 +66,7 @@ protected:
private:
GLCube *m_cube;
+ GLSphere *m_sphere;
};
#endif // MMSCENE_H