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/Rep.h')
-rw-r--r--source/blender/freestyle/intern/scene_graph/Rep.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/freestyle/intern/scene_graph/Rep.h b/source/blender/freestyle/intern/scene_graph/Rep.h
index dae5272beed..1401e69886a 100644
--- a/source/blender/freestyle/intern/scene_graph/Rep.h
+++ b/source/blender/freestyle/intern/scene_graph/Rep.h
@@ -102,7 +102,7 @@ class Rep : public BaseObject {
}
}
- /*! Accept the corresponding visitor
+ /** Accept the corresponding visitor
* Must be overload by inherited classes
*/
virtual void accept(SceneVisitor &v)
@@ -113,13 +113,13 @@ class Rep : public BaseObject {
v.visitRep(*this);
}
- /*! Computes the rep bounding box.
+ /** Computes the rep bounding box.
* Each Inherited rep must compute its bbox depending on the way the data are stored. So, each
* inherited class must overload this method
*/
virtual void ComputeBBox() = 0;
- /*! Returns the rep bounding box */
+ /** Returns the rep bounding box */
virtual const BBox<Vec3f> &bbox() const
{
return _BBox;
@@ -145,7 +145,7 @@ class Rep : public BaseObject {
return _FrsMaterial;
}
- /*! Sets the Rep bounding box */
+ /** Sets the Rep bounding box */
virtual void setBBox(const BBox<Vec3f> &iBox)
{
_BBox = iBox;