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/TriangleRep.h')
-rw-r--r--source/blender/freestyle/intern/scene_graph/TriangleRep.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/freestyle/intern/scene_graph/TriangleRep.h b/source/blender/freestyle/intern/scene_graph/TriangleRep.h
index 4461b38d68b..e3f221567b0 100644
--- a/source/blender/freestyle/intern/scene_graph/TriangleRep.h
+++ b/source/blender/freestyle/intern/scene_graph/TriangleRep.h
@@ -26,10 +26,10 @@
namespace Freestyle {
-/*! Base class for all lines objects */
+/** Base class for all lines objects */
class TriangleRep : public Rep {
public:
- /*! Line description style */
+ /** Line description style */
enum TRIANGLE_STYLE {
FILL,
LINES,
@@ -46,7 +46,7 @@ class TriangleRep : public Rep {
_Style = FILL;
}
- /*! Builds a triangle from 3 vertices
+ /** Builds a triangle from 3 vertices
* v0
* first vertex
* v1
@@ -83,7 +83,7 @@ class TriangleRep : public Rep {
{
}
- /*! accessors */
+ /** accessors */
inline const TRIANGLE_STYLE style() const
{
return _Style;
@@ -99,7 +99,7 @@ class TriangleRep : public Rep {
return _colors[index];
}
- /*! modifiers */
+ /** modifiers */
inline void setStyle(const TRIANGLE_STYLE iStyle)
{
_Style = iStyle;
@@ -129,14 +129,14 @@ class TriangleRep : public Rep {
_colors[2] = c2;
}
- /*! Accept the corresponding visitor */
+ /** Accept the corresponding visitor */
virtual void accept(SceneVisitor &v)
{
Rep::accept(v);
v.visitTriangleRep(*this);
}
- /*! Computes the triangle bounding box.*/
+ /** Computes the triangle bounding box. */
virtual void ComputeBBox();
};