mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-25 21:48:57 -05:00
Add description to PropertyOwner
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user