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
@@ -76,17 +76,18 @@ namespace openspace {
RenderableFieldlines::RenderableFieldlines(const ghoul::Dictionary& dictionary)
: Renderable(dictionary)
, _stepSize("stepSize", "Fieldline Step Size", defaultFieldlineStepSize, 0.f, 10.f)
, _classification("classification", "Fieldline Classification", true)
, _stepSize("stepSize", "Fieldline Step Size", "", defaultFieldlineStepSize, 0.f, 10.f) // @TODO Missing documentation
, _classification("classification", "Fieldline Classification", "", true) // @TODO Missing documentation
, _fieldlineColor(
"fieldlineColor",
"Fieldline Color",
"", // @TODO Missing documentation
defaultFieldlineColor,
glm::vec4(0.f),
glm::vec4(1.f)
)
, _seedPointSource("source", "SeedPoint Source")
, _seedPointSourceFile("sourceFile", "SeedPoint File")
, _seedPointSource("source", "SeedPoint Source", "") // @TODO Missing documentation
, _seedPointSourceFile("sourceFile", "SeedPoint File", "") // @TODO Missing documentation
, _program(nullptr)
, _seedPointsAreDirty(true)
, _fieldLinesAreDirty(true)