diff --git a/src/pe/raytracing/Color.cpp b/src/pe/raytracing/Color.cpp index 29c7e6d3491eb9c041470474ec6af3c43f784a64..4e9deab3f029827d88226d6ab353d144e33bc165 100644 --- a/src/pe/raytracing/Color.cpp +++ b/src/pe/raytracing/Color.cpp @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License along // with waLBerla (see COPYING.txt). If not, see <http://www.gnu.org/licenses/>. // -//! \file Color.cpp +//! \file Color.cpp //! \author Lukas Werner // //====================================================================================================================== diff --git a/src/pe/raytracing/Color.h b/src/pe/raytracing/Color.h index 159c0ef13772b5b01b2dbe18d4beb0f9c9dfd711..cf599930460172403014367436679d9304d194f3 100644 --- a/src/pe/raytracing/Color.h +++ b/src/pe/raytracing/Color.h @@ -13,6 +13,7 @@ // You should have received a copy of the GNU General Public License along // with waLBerla (see COPYING.txt). If not, see <http://www.gnu.org/licenses/>. // +//! \file Color.h //! \author Lukas Werner // //====================================================================================================================== @@ -25,6 +26,7 @@ namespace walberla { namespace pe { namespace raytracing { + class Color: public Vector3<real_t> { public: /*!\name Constructors */ @@ -75,6 +77,7 @@ public: static Color colorFromHSV(real_t hue, real_t saturation, real_t value); }; -} -} -} + +} //namespace raytracing +} //namespace pe +} //namespace walberla diff --git a/src/pe/raytracing/Intersects.h b/src/pe/raytracing/Intersects.h index 37ee6f68c14b6a3c7c0d8e0ee46f0fccf8a46e17..2934ba17795fae41cff8b3b9f13957ae326c8e41 100644 --- a/src/pe/raytracing/Intersects.h +++ b/src/pe/raytracing/Intersects.h @@ -37,6 +37,7 @@ namespace walberla { namespace pe { namespace raytracing { + inline bool intersects(const SphereID sphere, const Ray& ray, real_t& t, Vec3& n); inline bool intersects(const PlaneID plane, const Ray& ray, real_t& t, Vec3& n); inline bool intersects(const BoxID box, const Ray& ray, real_t& t, Vec3& n); @@ -461,6 +462,7 @@ inline bool intersects(const AABB& aabb, const Ray& ray, real_t& t, real_t paddi t = t_; return true; } -} -} -} + +} //namespace raytracing +} //namespace pe +} //namespace walberla diff --git a/src/pe/raytracing/Lighting.h b/src/pe/raytracing/Lighting.h index ce2778c343b6ad08feae7dc9afbf495ce9d528bc..451cfe3357ca80dad10613a79251ed75da366898 100644 --- a/src/pe/raytracing/Lighting.h +++ b/src/pe/raytracing/Lighting.h @@ -28,6 +28,7 @@ namespace walberla { namespace pe { namespace raytracing { + /*!\brief The Lighting struct defines the properties of a point light in the scene. */ struct Lighting { @@ -71,6 +72,7 @@ struct Lighting { ambientColor = config.getParameter<Color>("ambientColor", Color(0.5,0.5,0.5)); } }; -} -} -} + +} //namespace raytracing +} //namespace pe +} //namespace walberla diff --git a/src/pe/raytracing/Ray.cpp b/src/pe/raytracing/Ray.cpp index 3fbcd307067470b387a2e5511c2fab08605c3afc..c3f0a977684c1ffa0e2171503942572e49460949 100644 --- a/src/pe/raytracing/Ray.cpp +++ b/src/pe/raytracing/Ray.cpp @@ -23,6 +23,7 @@ namespace walberla { namespace pe { namespace raytracing { + /*!\brief Global output operator for rays. * * \param os Reference to the output stream. @@ -35,6 +36,6 @@ std::ostream& operator<<(std::ostream& os, const Ray& ray) { << ", c: (" << ray.getImageX() << "/" << ray.getImageY() << ")>"; } -} -} -} +} //namespace raytracing +} //namespace pe +} //namespace walberla diff --git a/src/pe/raytracing/Ray.h b/src/pe/raytracing/Ray.h index 6fed295fc8a05449b7f30f3c9273852066e847cf..052ee87bf4cd11398d9e3229808068600741eb24 100644 --- a/src/pe/raytracing/Ray.h +++ b/src/pe/raytracing/Ray.h @@ -219,6 +219,7 @@ public: } //@} }; -} -} -} + +} //namespace raytracing +} //namespace pe +} //namespace walberla diff --git a/src/pe/raytracing/Raytracer.cpp b/src/pe/raytracing/Raytracer.cpp index b3793fae2f2c0f72d1f1794fdcf3cec646aeedbb..59320cc4abcb15f6217b53b0e4c1faa03b371dc4 100644 --- a/src/pe/raytracing/Raytracer.cpp +++ b/src/pe/raytracing/Raytracer.cpp @@ -421,6 +421,6 @@ void Raytracer::output(const std::vector<BodyIntersectionInfo>& intersectionsBuf if (tt != NULL) tt->stop("Output"); } -} -} -} +} //namespace raytracing +} //namespace pe +} //namespace walberla diff --git a/src/pe/raytracing/Raytracer.h b/src/pe/raytracing/Raytracer.h index f15fb763bf8e672a7f06e59c8d2733a8d1b23257..aa1707970a2d21d0334db6eea685524a71f2166f 100644 --- a/src/pe/raytracing/Raytracer.h +++ b/src/pe/raytracing/Raytracer.h @@ -37,9 +37,6 @@ #include <stddef.h> -using namespace walberla::pe; -using namespace walberla::timing; - namespace walberla { namespace pe { namespace raytracing { @@ -706,6 +703,7 @@ inline Color Raytracer::getColor(const BodyID body, const Ray& ray, real_t t, co return color; } -} -} -} + +} //namespace raytracing +} //namespace pe +} //namespace walberla diff --git a/src/pe/raytracing/ShadingFunctions.h b/src/pe/raytracing/ShadingFunctions.h index 20f1f9f1fd6098a734784ed21e064f72055348c8..65675bb21aaee1f85688341e064457c5bdfb6954 100644 --- a/src/pe/raytracing/ShadingFunctions.h +++ b/src/pe/raytracing/ShadingFunctions.h @@ -30,6 +30,7 @@ namespace walberla { namespace pe { namespace raytracing { + inline ShadingParameters defaultBodyTypeDependentShadingParams (const BodyID body); inline ShadingParameters processRankDependentShadingParams (const BodyID body); inline ShadingParameters defaultShadingParams (const BodyID body); @@ -169,6 +170,7 @@ inline ShadingParameters violetShadingParams (const BodyID body) { real_t(0)); return s; } -} -} -} + +} //namespace raytracing +} //namespace pe +} //namespace walberla diff --git a/src/pe/raytracing/ShadingParameters.h b/src/pe/raytracing/ShadingParameters.h index 7d0930379729f0e9fd3a127a78bbcf7a4ac478d7..7e476527d1bd665c4017780f8858dbd39aff8876 100644 --- a/src/pe/raytracing/ShadingParameters.h +++ b/src/pe/raytracing/ShadingParameters.h @@ -27,6 +27,7 @@ namespace walberla { namespace pe { namespace raytracing { + struct ShadingParameters { Color diffuseColor; //!< Primary color of the material. Color ambientColor; //!< Color the material has even when its not directly lit. @@ -80,7 +81,8 @@ struct ShadingParameters { return *this; } }; -} -} -} + +} //namespace raytracing +} //namespace pe +} //namespace walberla