#include <basic_play_box_graphics.h>

Public Member Functions | |
| BasicPlayBoxGraphics () | |
| Default constructor. | |
| virtual | ~BasicPlayBoxGraphics () |
| Destructor. | |
| virtual void | timeUpdate (float dt) |
| Timer value change event occured. | |
Private Member Functions | |
| BasicPlayBoxGraphics (const BasicPlayBoxGraphics &) | |
| BasicPlayBoxGraphics & | operator= (const BasicPlayBoxGraphics &) |
| virtual SoGroup * | createWalls () |
| A virtual method that creates walls. | |
| virtual SoGroup * | createBackWall () |
| A virtual method that creates the back wall. | |
Reference object (cannot be copied).
| BasicPlayBoxGraphics::BasicPlayBoxGraphics | ( | const BasicPlayBoxGraphics & | ) | [private] |
| BasicPlayBoxGraphics::BasicPlayBoxGraphics | ( | ) |
Default constructor.
| virtual BasicPlayBoxGraphics::~BasicPlayBoxGraphics | ( | ) | [virtual] |
Destructor.
| BasicPlayBoxGraphics& BasicPlayBoxGraphics::operator= | ( | const BasicPlayBoxGraphics & | ) | [private] |
| virtual SoGroup* BasicPlayBoxGraphics::createWalls | ( | ) | [private, virtual] |
A virtual method that creates walls.
This methods creates the four PlayBoxGraphics side walls. It is to be overriden by each descendant of this abstract class.
Implements PlayBoxGraphics.
| virtual SoGroup* BasicPlayBoxGraphics::createBackWall | ( | ) | [private, virtual] |
A virtual method that creates the back wall.
This methods creates the back wall of the PlayBoxGraphics. It is to be overriden by each descendant of this abstract class.
Implements PlayBoxGraphics.
| virtual void BasicPlayBoxGraphics::timeUpdate | ( | float | dt | ) | [virtual] |
Timer value change event occured.
This method is called on each timer value change.
| [in] | dt | Time difference between the last call (delta). |
Implements TimeUpdateable.
1.5.6