Clean up: Remove targetBody from Renderable

This commit is contained in:
Erik Broberg
2016-08-12 16:39:26 -04:00
parent 0f21217f38
commit 7fc31151ea
10 changed files with 24 additions and 330 deletions

View File

@@ -77,10 +77,6 @@ public:
bool hasTimeInterval();
bool getInterval(double& start, double& end);
bool hasBody();
bool getBody(std::string& body);
void setBody(std::string& body);
void onEnabledChange(std::function<void(bool)> callback);
static void setPscUniforms(ghoul::opengl::ProgramObject& program, const Camera& camera, const PowerScaledCoordinate& position);
@@ -92,8 +88,6 @@ private:
PowerScaledScalar boundingSphere_;
std::string _startTime;
std::string _endTime;
std::string _targetBody;
bool _hasBody;
bool _hasTimeInterval;
};