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/NodeDrawingStyle.h')
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h b/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h
index 8bbdaf30bad..38b84c7be3a 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h
@@ -48,34 +48,34 @@ class NodeDrawingStyle : public NodeGroup {
_DrawingStyle = iDrawingStyle;
}
- /*! Sets the style. Must be one of FILLED, LINES, POINTS, INVISIBLE. */
+ /** Sets the style. Must be one of FILLED, LINES, POINTS, INVISIBLE. */
inline void setStyle(const DrawingStyle::STYLE iStyle)
{
_DrawingStyle.setStyle(iStyle);
}
- /*! Sets the line width in the LINES style case */
+ /** Sets the line width in the LINES style case */
inline void setLineWidth(const float iLineWidth)
{
_DrawingStyle.setLineWidth(iLineWidth);
}
- /*! Sets the Point size in the POINTS style case */
+ /** Sets the Point size in the POINTS style case */
inline void setPointSize(const float iPointSize)
{
_DrawingStyle.setPointSize(iPointSize);
}
- /*! Enables or disables the lighting. true = enable */
+ /** Enables or disables the lighting. true = enable */
inline void setLightingEnabled(const bool iEnableLighting)
{
_DrawingStyle.setLightingEnabled(iEnableLighting);
}
- /*! Accept the corresponding visitor */
+ /** Accept the corresponding visitor */
virtual void accept(SceneVisitor &v);
- /*! accessors */
+ /** accessors */
inline DrawingStyle::STYLE style() const
{
return _DrawingStyle.style();