mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-20 03:00:03 -06:00
Comment out lowerValueBound/lowerUpperBound until further revision
This commit is contained in:
committed by
Matthias Berg
parent
abe5cf0fc5
commit
c2fca8be46
@@ -176,7 +176,6 @@ namespace openspace::volume {
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
//documentation::Documentation RenderableTimeVaryingVolume::TimestepDocumentation() {
|
||||
// using namespace documentation;
|
||||
// return {
|
||||
@@ -235,8 +234,8 @@ RenderableTimeVaryingVolume::RenderableTimeVaryingVolume(
|
||||
, _secondsAfter(SecondsAfterInfo, 0.f, 0.01f, SecondsInOneDay)
|
||||
, _sourceDirectory(SourceDirectoryInfo)
|
||||
, _transferFunctionPath(TransferFunctionInfo)
|
||||
, _lowerValueBound(lowerValueBoundInfo, 0.f, 0.f, 1000000.f)
|
||||
, _upperValueBound(upperValueBoundInfo, 0.f, 0.f, 1000000.f)
|
||||
// , _lowerValueBound(lowerValueBoundInfo, 0.f, 0.f, 1000000.f)
|
||||
// , _upperValueBound(upperValueBoundInfo, 0.f, 0.f, 1000000.f)
|
||||
, _triggerTimeJump(TriggerTimeJumpInfo)
|
||||
, _jumpToTimestep(JumpToTimestepInfo, 0, 0, 256)
|
||||
, _currentTimestep(CurrentTimeStepInfo, 0, 0, 256)
|
||||
@@ -248,8 +247,8 @@ RenderableTimeVaryingVolume::RenderableTimeVaryingVolume(
|
||||
);
|
||||
|
||||
_sourceDirectory = absPath(dictionary.value<std::string>(KeySourceDirectory));
|
||||
_lowerValueBound = dictionary.value<float>(KeyLowerValueBound);
|
||||
_upperValueBound = dictionary.value<float>(KeyUpperValueBound);
|
||||
// _lowerValueBound = dictionary.value<float>(KeyLowerValueBound);
|
||||
// _upperValueBound = dictionary.value<float>(KeyUpperValueBound);
|
||||
_transferFunctionPath = absPath(dictionary.value<std::string>(KeyTransferFunction));
|
||||
_transferFunction = std::make_shared<openspace::TransferFunction>(
|
||||
_transferFunctionPath,
|
||||
|
||||
@@ -95,8 +95,8 @@ private:
|
||||
properties::FloatProperty _secondsAfter;
|
||||
properties::StringProperty _sourceDirectory;
|
||||
properties::StringProperty _transferFunctionPath;
|
||||
properties::FloatProperty _lowerValueBound;
|
||||
properties::FloatProperty _upperValueBound;
|
||||
// properties::FloatProperty _lowerValueBound;
|
||||
// properties::FloatProperty _upperValueBound;
|
||||
|
||||
properties::TriggerProperty _triggerTimeJump;
|
||||
properties::IntProperty _jumpToTimestep;
|
||||
|
||||
Reference in New Issue
Block a user