Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/freestyle/intern/scene_graph/NodeLight.h')
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeLight.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/freestyle/intern/scene_graph/NodeLight.h b/source/blender/freestyle/intern/scene_graph/NodeLight.h
index bf8389441b6..1d92a96100c 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeLight.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeLight.h
@@ -40,10 +40,10 @@ class NodeLight : public Node {
{
}
- /*! Accept the corresponding visitor */
+ /** Accept the corresponding visitor */
virtual void accept(SceneVisitor &v);
- /*! Accessors for the light properties */
+ /** Accessors for the light properties */
inline const float *ambient() const
{
return Ambient;
@@ -78,24 +78,24 @@ class NodeLight : public Node {
// Data members
// ============
- /*! on=true, the light is on */
+ /** on=true, the light is on */
bool on;
- /*! The color definition */
+ /** The color definition */
float Ambient[4];
float Diffuse[4];
float Specular[4];
- /*! Light position. if w = 0, the light is placed at infinite. */
+ /** Light position. if w = 0, the light is placed at infinite. */
float Position[4];
- /*! used to manage the number of lights */
- /*! numberOfLights
+ /** used to manage the number of lights */
+ /** numberOfLights
* the number of lights in the scene.
* Initially, 0.
*/
static int numberOfLights;
- /*! The current lignt number */
+ /** The current lignt number */
int _number;
};