Change capitalization of property names

This commit is contained in:
Alexander Bock
2017-07-22 18:22:44 -04:00
parent 04bac9293b
commit 036b271d0d
72 changed files with 363 additions and 365 deletions
+5 -5
View File
@@ -92,11 +92,11 @@ documentation::Documentation RenderableSphere::Documentation() {
RenderableSphere::RenderableSphere(const ghoul::Dictionary& dictionary)
: Renderable(dictionary)
, _texturePath({ "texture", "Texture", "" }) // @TODO Missing documentation
, _orientation({ "orientation", "Orientation", "" }) // @TODO Missing documentation
, _size({ "size", "Size", "" }, 1.f, 0.f, std::pow(10.f, 45)) // @TODO Missing documentation
, _segments({ "segments", "Segments", "" }, 8, 4, 100) // @TODO Missing documentation
, _transparency({ "transparency", "Transparency", "" }, 1.f, 0.f, 1.f) // @TODO Missing documentation
, _texturePath({ "Texture", "Texture", "" }) // @TODO Missing documentation
, _orientation({ "Orientation", "Orientation", "" }) // @TODO Missing documentation
, _size({ "Size", "Size", "" }, 1.f, 0.f, std::pow(10.f, 45)) // @TODO Missing documentation
, _segments({ "Segments", "Segments", "" }, 8, 4, 100) // @TODO Missing documentation
, _transparency({ "Transparency", "Transparency", "" }, 1.f, 0.f, 1.f) // @TODO Missing documentation
, _shader(nullptr)
, _texture(nullptr)
, _sphere(nullptr)