Add description to Propertys

This commit is contained in:
Alexander Bock
2017-07-21 16:31:58 -04:00
parent 3c213fae1e
commit b584f0197e
73 changed files with 409 additions and 311 deletions

View File

@@ -125,15 +125,16 @@ documentation::Documentation RenderableTrailTrajectory::Documentation() {
RenderableTrailTrajectory::RenderableTrailTrajectory(const ghoul::Dictionary& dictionary)
: RenderableTrail(dictionary)
, _startTime("startTime", "Start Time")
, _endTime("endTime", "End Time")
, _sampleInterval("sampleInterval", "Sample Interval", 2.0, 2.0, 1e6)
, _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
1, 1, 1000000000
)
, _renderFullTrail("renderFullTrail", "Render Full Trail", false)
, _renderFullTrail("renderFullTrail", "Render Full Trail", "", false) // @TODO Missing documentation
, _needsFullSweep(true)
, _subsamplingIsDirty(true)
{