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/VertexRep.h')
-rw-r--r--source/blender/freestyle/intern/scene_graph/VertexRep.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/freestyle/intern/scene_graph/VertexRep.h b/source/blender/freestyle/intern/scene_graph/VertexRep.h
index 278cfa694f7..edcb3405e4e 100644
--- a/source/blender/freestyle/intern/scene_graph/VertexRep.h
+++ b/source/blender/freestyle/intern/scene_graph/VertexRep.h
@@ -47,17 +47,17 @@ class VertexRep : public Rep {
{
}
- /*! Accept the corresponding visitor */
+ /** Accept the corresponding visitor */
virtual void accept(SceneVisitor &v)
{
Rep::accept(v);
v.visitVertexRep(*this);
}
- /*! Computes the rep bounding box. */
+ /** Computes the rep bounding box. */
virtual void ComputeBBox();
- /*! accessors */
+ /** accessors */
inline const int vid() const
{
return _vid;
@@ -88,7 +88,7 @@ class VertexRep : public Rep {
return _PointSize;
}
- /*! modifiers */
+ /** modifiers */
inline void setVid(int id)
{
_vid = id;