Skip to content
Snippets Groups Projects
Commit 70cc8ea1 authored by Lukas Werner's avatar Lukas Werner
Browse files

Small fix and better doc for Lighting

parent b1b496fb
No related merge requests found
...@@ -28,6 +28,8 @@ ...@@ -28,6 +28,8 @@
namespace walberla { namespace walberla {
namespace pe { namespace pe {
namespace raytracing { namespace raytracing {
/*!\brief The Lighting struct defines the properties of a point light in the scene.
*/
struct Lighting { struct Lighting {
Vec3 pointLightOrigin; Vec3 pointLightOrigin;
Color diffuseColor; Color diffuseColor;
...@@ -42,9 +44,9 @@ struct Lighting { ...@@ -42,9 +44,9 @@ struct Lighting {
/*!\brief Instantiation constructor for the Lighting struct. /*!\brief Instantiation constructor for the Lighting struct.
* \param pointLightOrigin Origin of the point light. * \param pointLightOrigin Origin of the point light.
* \param diffuseColor Diffuse color. * \param diffuseColor Diffuse color (base color of the light).
* \param specularColor Specular color. * \param specularColor Specular color (color of light refractions on an objects surface).
* \param ambientColor Color of the ambient light. * \param ambientColor Color of the ambient light in the scene.
*/ */
Lighting (const Vec3& _pointLightOrigin, Lighting (const Vec3& _pointLightOrigin,
const Color& _diffuseColor, const Color& _specularColor, const Color& _ambientColor) const Color& _diffuseColor, const Color& _specularColor, const Color& _ambientColor)
......
...@@ -39,6 +39,7 @@ inline ShadingParameters lightGreyShadingParams (const BodyID body); ...@@ -39,6 +39,7 @@ inline ShadingParameters lightGreyShadingParams (const BodyID body);
inline ShadingParameters greyShadingParams (const BodyID body); inline ShadingParameters greyShadingParams (const BodyID body);
inline ShadingParameters darkGreyShadingParams (const BodyID body); inline ShadingParameters darkGreyShadingParams (const BodyID body);
inline ShadingParameters redShadingParams (const BodyID body); inline ShadingParameters redShadingParams (const BodyID body);
inline ShadingParameters greenShadingParams (const BodyID body);
inline ShadingParameters blueShadingParams (const BodyID body); inline ShadingParameters blueShadingParams (const BodyID body);
inline ShadingParameters violetShadingParams (const BodyID body); inline ShadingParameters violetShadingParams (const BodyID body);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment