

Public Member Functions | |
| CoreExecutionEnvironment (CelestiaCore &_core) | |
| CelestiaCore * | getCelestiaCore () const |
| Renderer * | getRenderer () const |
| Simulation * | getSimulation () const |
| void | showText (string s, int horig, int vorig, int hoff, int voff, double duration) |
Private Attributes | |
| CelestiaCore & | core |
|
|
Definition at line 95 of file celestiacore.cpp. References core. 00095 : core(_core) 00096 { 00097 }
|
|
|
Implements ExecutionEnvironment. Definition at line 109 of file celestiacore.cpp. References core. 00110 {
00111 return &core;
00112 }
|
|
|
Implements ExecutionEnvironment. Definition at line 104 of file celestiacore.cpp. References core, and CelestiaCore::getRenderer(). 00105 {
00106 return core.getRenderer();
00107 }
|
|
|
Implements ExecutionEnvironment. Definition at line 99 of file celestiacore.cpp. References core, and CelestiaCore::getSimulation(). 00100 {
00101 return core.getSimulation();
00102 }
|
|
||||||||||||||||||||||||||||
|
Definition at line 114 of file celestiacore.cpp. References core, and CelestiaCore::showText().
|
|
|
Definition at line 92 of file celestiacore.cpp. Referenced by CoreExecutionEnvironment(), getCelestiaCore(), getRenderer(), getSimulation(), and showText(). |
1.4.1