Add description to PropertyOwner

This commit is contained in:
Alexander Bock
2017-08-01 17:05:52 -04:00
parent eaf0d70a79
commit 8a62e6e791
39 changed files with 84 additions and 45 deletions
+2 -1
View File
@@ -30,7 +30,8 @@
namespace openspace {
VolumeClipPlane::VolumeClipPlane(const ghoul::Dictionary& dictionary)
: _normal(
: properties::PropertyOwner({ "" }) // @TODO Missing name
, _normal(
{ "Normal", "Normal", "" }, // @TODO Missing documentation
glm::vec3(1.f, 0.f, 0.f),
glm::vec3(-1.f),
@@ -30,7 +30,8 @@
namespace openspace {
VolumeClipPlanes::VolumeClipPlanes(const ghoul::Dictionary& dictionary)
: _nClipPlanes({ "nClipPlanes", "Number of clip planes", "" }, 0, 0, 10) // @TODO Missing documentation
: properties::PropertyOwner({ "" }) // @TODO Missing name
, _nClipPlanes({ "nClipPlanes", "Number of clip planes", "" }, 0, 0, 10) // @TODO Missing documentation
{
std::vector<std::string> keys = dictionary.keys();
for (const std::string& key : keys) {