General changes

added OpenSpaceEngine
added ConfigurationManager
added query functions
removed GLEW-related Windows warning
added old external control classes
more restructuring
This commit is contained in:
Alexander Bock
2014-01-09 19:19:01 +01:00
parent ecd539ddf4
commit 006bd56ae6
48 changed files with 3050 additions and 54 deletions

View File

@@ -0,0 +1,32 @@
// open space includes
#include "renderable.h"
namespace openspace {
Renderable::Renderable() {
}
Renderable::Renderable(const pss &boundingSphere) {
boundingSphere_ = boundingSphere;
}
Renderable::~Renderable() {
}
void Renderable::setBoundingSphere(const pss &boundingSphere) {
boundingSphere_ = boundingSphere;
}
const pss& Renderable::getBoundingSphere() {
return boundingSphere_;
}
void Renderable::update() {
}
} // namespace openspace