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/OrientedLineRep.h')
-rw-r--r--source/blender/freestyle/intern/scene_graph/OrientedLineRep.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/freestyle/intern/scene_graph/OrientedLineRep.h b/source/blender/freestyle/intern/scene_graph/OrientedLineRep.h
index c33fd529c69..6aaba1d30d2 100644
--- a/source/blender/freestyle/intern/scene_graph/OrientedLineRep.h
+++ b/source/blender/freestyle/intern/scene_graph/OrientedLineRep.h
@@ -32,7 +32,7 @@ class OrientedLineRep : public LineRep {
OrientedLineRep() : LineRep()
{
}
- /*! Builds a single line from 2 vertices
+ /** Builds a single line from 2 vertices
* v1
* first vertex
* v2
@@ -42,12 +42,12 @@ class OrientedLineRep : public LineRep {
{
}
- /*! Builds a line rep from a vertex chain */
+ /** Builds a line rep from a vertex chain */
inline OrientedLineRep(const vector<Vec3r> &vertices) : LineRep(vertices)
{
}
- /*! Builds a line rep from a vertex chain */
+ /** Builds a line rep from a vertex chain */
inline OrientedLineRep(const list<Vec3r> &vertices) : LineRep(vertices)
{
}
@@ -56,7 +56,7 @@ class OrientedLineRep : public LineRep {
{
}
- /*! Accept the corresponding visitor */
+ /** Accept the corresponding visitor */
virtual void accept(SceneVisitor &v);
};