diff options
Diffstat (limited to 'src/mmscene.h')
| -rw-r--r-- | src/mmscene.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mmscene.h b/src/mmscene.h index 8bfa74e..36cf2e8 100644 --- a/src/mmscene.h +++ b/src/mmscene.h @@ -37,6 +37,24 @@ protected: */ void drawTriangles(); + /** + * @brief createCubef Creates a cube and apends it for drawing. + * @param lbb The left bottom back cube vector. + * @param rtf The right top front cube vector. + */ + virtual void createCube(const QVector3D &lbb, const QVector3D &rtf); + + /** + * @brief createF Creates an 'F' with cubes. + * @param height The height of the 'F'. + */ + virtual void createF(double height); + + /** + * @brief drawF Draws an 'F' with matrix transformations. + * @param height The height of the 'F'. + */ + virtual void drawF(double height); }; |
