mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-02-23 05:19:18 -06:00
Encapsulate identifier, guiName, and description into a PropertyInfo struct
This commit is contained in:
@@ -125,16 +125,14 @@ documentation::Documentation RenderableTrailTrajectory::Documentation() {
|
||||
|
||||
RenderableTrailTrajectory::RenderableTrailTrajectory(const ghoul::Dictionary& dictionary)
|
||||
: RenderableTrail(dictionary)
|
||||
, _startTime("startTime", "Start Time", "") // @TODO Missing documentation
|
||||
, _endTime("endTime", "End Time", "") // @TODO Missing documentation
|
||||
, _sampleInterval("sampleInterval", "Sample Interval", "", 2.0, 2.0, 1e6) // @TODO Missing documentation
|
||||
, _startTime({ "startTime", "Start Time", "" }) // @TODO Missing documentation
|
||||
, _endTime({ "endTime", "End Time", "" }) // @TODO Missing documentation
|
||||
, _sampleInterval({ "sampleInterval", "Sample Interval", "" }, 2.0, 2.0, 1e6) // @TODO Missing documentation
|
||||
, _timeStampSubsamplingFactor(
|
||||
"subSample",
|
||||
"Time Stamp Subsampling Factor",
|
||||
"", // @TODO Missing documentation
|
||||
{ "subSample", "Time Stamp Subsampling Factor", "" }, // @TODO Missing documentation
|
||||
1, 1, 1000000000
|
||||
)
|
||||
, _renderFullTrail("renderFullTrail", "Render Full Trail", "", false) // @TODO Missing documentation
|
||||
, _renderFullTrail({ "renderFullTrail", "Render Full Trail", "" }, false) // @TODO Missing documentation
|
||||
, _needsFullSweep(true)
|
||||
, _subsamplingIsDirty(true)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user