mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-02-05 19:19:11 -06:00
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:
32
src/rendering/renderable.cpp
Normal file
32
src/rendering/renderable.cpp
Normal 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
|
||||
Reference in New Issue
Block a user