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')
-rw-r--r--source/blender/freestyle/intern/scene_graph/DrawingStyle.h5
-rw-r--r--source/blender/freestyle/intern/scene_graph/FrsMaterial.h5
-rw-r--r--source/blender/freestyle/intern/scene_graph/IndexedFaceSet.cpp5
-rw-r--r--source/blender/freestyle/intern/scene_graph/IndexedFaceSet.h5
-rw-r--r--source/blender/freestyle/intern/scene_graph/LineRep.cpp5
-rw-r--r--source/blender/freestyle/intern/scene_graph/LineRep.h5
-rw-r--r--source/blender/freestyle/intern/scene_graph/Node.h5
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeCamera.cpp5
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeCamera.h5
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.cpp5
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h5
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeGroup.cpp7
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeGroup.h7
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeLight.cpp5
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeLight.h5
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeShape.cpp5
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeShape.h5
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeTransform.cpp7
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeTransform.h7
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeViewLayer.cpp5
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeViewLayer.h5
-rw-r--r--source/blender/freestyle/intern/scene_graph/OrientedLineRep.cpp5
-rw-r--r--source/blender/freestyle/intern/scene_graph/OrientedLineRep.h5
-rw-r--r--source/blender/freestyle/intern/scene_graph/Rep.cpp5
-rw-r--r--source/blender/freestyle/intern/scene_graph/Rep.h5
-rw-r--r--source/blender/freestyle/intern/scene_graph/SceneHash.cpp3
-rw-r--r--source/blender/freestyle/intern/scene_graph/SceneHash.h3
-rw-r--r--source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.cpp5
-rw-r--r--source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h5
-rw-r--r--source/blender/freestyle/intern/scene_graph/SceneVisitor.cpp5
-rw-r--r--source/blender/freestyle/intern/scene_graph/SceneVisitor.h5
-rw-r--r--source/blender/freestyle/intern/scene_graph/TriangleRep.cpp5
-rw-r--r--source/blender/freestyle/intern/scene_graph/TriangleRep.h5
-rw-r--r--source/blender/freestyle/intern/scene_graph/VertexRep.cpp5
-rw-r--r--source/blender/freestyle/intern/scene_graph/VertexRep.h5
35 files changed, 107 insertions, 72 deletions
diff --git a/source/blender/freestyle/intern/scene_graph/DrawingStyle.h b/source/blender/freestyle/intern/scene_graph/DrawingStyle.h
index 846512a7c6f..5ad16845327 100644
--- a/source/blender/freestyle/intern/scene_graph/DrawingStyle.h
+++ b/source/blender/freestyle/intern/scene_graph/DrawingStyle.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_DRAWING_STYLE_H__
#define __FREESTYLE_DRAWING_STYLE_H__
-/** \file \ingroup freestyle
- * \brief Class to define the drawing style of a node
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define the drawing style of a node
*/
#ifdef WITH_CXX_GUARDEDALLOC
diff --git a/source/blender/freestyle/intern/scene_graph/FrsMaterial.h b/source/blender/freestyle/intern/scene_graph/FrsMaterial.h
index 6228452cdd2..2a830a40da8 100644
--- a/source/blender/freestyle/intern/scene_graph/FrsMaterial.h
+++ b/source/blender/freestyle/intern/scene_graph/FrsMaterial.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_MATERIAL_H__
#define __FREESTYLE_MATERIAL_H__
-/** \file \ingroup freestyle
- * \brief Class used to handle materials.
+/** \file
+ * \ingroup freestyle
+ * \brief Class used to handle materials.
*/
#include "../system/FreestyleConfig.h"
diff --git a/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.cpp b/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.cpp
index a40912cbd91..d39f6fac75d 100644
--- a/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.cpp
+++ b/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief A Set of indexed faces to represent a surfacic object
+/** \file
+ * \ingroup freestyle
+ * \brief A Set of indexed faces to represent a surfacic object
*/
#include "IndexedFaceSet.h"
diff --git a/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.h b/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.h
index af2dc730d19..d5a2cad86dc 100644
--- a/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.h
+++ b/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_INDEXED_FACE_SET_H__
#define __FREESTYLE_INDEXED_FACE_SET_H__
-/** \file \ingroup freestyle
- * \brief A Set of indexed faces to represent a surfacic object
+/** \file
+ * \ingroup freestyle
+ * \brief A Set of indexed faces to represent a surfacic object
*/
#include <memory.h>
diff --git a/source/blender/freestyle/intern/scene_graph/LineRep.cpp b/source/blender/freestyle/intern/scene_graph/LineRep.cpp
index ef9a7d949fa..8484aea0376 100644
--- a/source/blender/freestyle/intern/scene_graph/LineRep.cpp
+++ b/source/blender/freestyle/intern/scene_graph/LineRep.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to define the representation of 3D Line.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define the representation of 3D Line.
*/
#include "LineRep.h"
diff --git a/source/blender/freestyle/intern/scene_graph/LineRep.h b/source/blender/freestyle/intern/scene_graph/LineRep.h
index 1d0f73da4aa..a7349240e3b 100644
--- a/source/blender/freestyle/intern/scene_graph/LineRep.h
+++ b/source/blender/freestyle/intern/scene_graph/LineRep.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_LINE_REP_H__
#define __FREESTYLE_LINE_REP_H__
-/** \file \ingroup freestyle
- * \brief Class to define the representation of 3D Line.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define the representation of 3D Line.
*/
#include <list>
diff --git a/source/blender/freestyle/intern/scene_graph/Node.h b/source/blender/freestyle/intern/scene_graph/Node.h
index 9c32c01a9f1..5fbbc797ebf 100644
--- a/source/blender/freestyle/intern/scene_graph/Node.h
+++ b/source/blender/freestyle/intern/scene_graph/Node.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_NODE_H__
#define __FREESTYLE_NODE_H__
-/** \file \ingroup freestyle
- * \brief Abstract class for scene graph nodes. Inherits from BaseObject which defines the addRef release mechanism.
+/** \file
+ * \ingroup freestyle
+ * \brief Abstract class for scene graph nodes. Inherits from BaseObject which defines the addRef release mechanism.
*/
#include "SceneVisitor.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeCamera.cpp b/source/blender/freestyle/intern/scene_graph/NodeCamera.cpp
index e45b30dfdd2..3413cd125c7 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeCamera.cpp
+++ b/source/blender/freestyle/intern/scene_graph/NodeCamera.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to represent a light node
+/** \file
+ * \ingroup freestyle
+ * \brief Class to represent a light node
*/
#include <math.h>
diff --git a/source/blender/freestyle/intern/scene_graph/NodeCamera.h b/source/blender/freestyle/intern/scene_graph/NodeCamera.h
index 27432a1ae53..cbff332849c 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeCamera.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeCamera.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_NODE_CAMERA_H__
#define __FREESTYLE_NODE_CAMERA_H__
-/** \file \ingroup freestyle
- * \brief Class to represent a light node
+/** \file
+ * \ingroup freestyle
+ * \brief Class to represent a light node
*/
#include "Node.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.cpp b/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.cpp
index f36453e8f24..c94ee961881 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.cpp
+++ b/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to define a Drawing Style to be applied to the underlying children. Inherits from NodeGroup.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define a Drawing Style to be applied to the underlying children. Inherits from NodeGroup.
*/
#include "NodeDrawingStyle.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h b/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h
index 61c6b114acb..f7bef20bc8f 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_NODE_DRAWING_STYLE_H__
#define __FREESTYLE_NODE_DRAWING_STYLE_H__
-/** \file \ingroup freestyle
- * \brief Class to define a Drawing Style to be applied to the underlying children. Inherits from NodeGroup.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define a Drawing Style to be applied to the underlying children. Inherits from NodeGroup.
*/
#include "DrawingStyle.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeGroup.cpp b/source/blender/freestyle/intern/scene_graph/NodeGroup.cpp
index 116738240fa..ee1f0b71b20 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeGroup.cpp
+++ b/source/blender/freestyle/intern/scene_graph/NodeGroup.cpp
@@ -14,9 +14,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to represent a group node. This node can contains several children.
- * \brief It also contains a transform matrix indicating the transform state of the underlying children.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to represent a group node. This node can contains several children.
+ * \brief It also contains a transform matrix indicating the transform state of the underlying children.
*/
#include "NodeGroup.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeGroup.h b/source/blender/freestyle/intern/scene_graph/NodeGroup.h
index f5c0c574537..23a168eba01 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeGroup.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeGroup.h
@@ -17,9 +17,10 @@
#ifndef __FREESTYLE_NODE_GROUP_H__
#define __FREESTYLE_NODE_GROUP_H__
-/** \file \ingroup freestyle
- * \brief Class to represent a group node. This node can contains several children.
- * \brief It also contains a transform matrix indicating the transform state of the underlying children.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to represent a group node. This node can contains several children.
+ * \brief It also contains a transform matrix indicating the transform state of the underlying children.
*/
#include <vector>
diff --git a/source/blender/freestyle/intern/scene_graph/NodeLight.cpp b/source/blender/freestyle/intern/scene_graph/NodeLight.cpp
index 65e29bd6ed7..9e513f6a488 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeLight.cpp
+++ b/source/blender/freestyle/intern/scene_graph/NodeLight.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to represent a light node
+/** \file
+ * \ingroup freestyle
+ * \brief Class to represent a light node
*/
#include "NodeLight.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeLight.h b/source/blender/freestyle/intern/scene_graph/NodeLight.h
index dc67ea0637d..4381d047540 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeLight.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeLight.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_NODE_LIGHT_H__
#define __FREESTYLE_NODE_LIGHT_H__
-/** \file \ingroup freestyle
- * \brief Class to represent a light node
+/** \file
+ * \ingroup freestyle
+ * \brief Class to represent a light node
*/
#include "Node.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeShape.cpp b/source/blender/freestyle/intern/scene_graph/NodeShape.cpp
index b1f3578976f..56c8068ad62 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeShape.cpp
+++ b/source/blender/freestyle/intern/scene_graph/NodeShape.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to build a shape node. It contains a Rep, which is the shape geometry
+/** \file
+ * \ingroup freestyle
+ * \brief Class to build a shape node. It contains a Rep, which is the shape geometry
*/
#include "NodeShape.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeShape.h b/source/blender/freestyle/intern/scene_graph/NodeShape.h
index 709931fa02f..f0dd24a9d14 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeShape.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeShape.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_NODE_SHAPE_H__
#define __FREESTYLE_NODE_SHAPE_H__
-/** \file \ingroup freestyle
- * \brief Class to build a shape node. It contains a Rep, which is the shape geometry
+/** \file
+ * \ingroup freestyle
+ * \brief Class to build a shape node. It contains a Rep, which is the shape geometry
*/
#include <vector>
diff --git a/source/blender/freestyle/intern/scene_graph/NodeTransform.cpp b/source/blender/freestyle/intern/scene_graph/NodeTransform.cpp
index 03c0e20f532..b4af715b3e4 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeTransform.cpp
+++ b/source/blender/freestyle/intern/scene_graph/NodeTransform.cpp
@@ -14,9 +14,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to represent a transform node. A Transform node contains one or several children,
- * \brief all affected by the transformation.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to represent a transform node. A Transform node contains one or several children,
+ * \brief all affected by the transformation.
*/
#include "NodeTransform.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeTransform.h b/source/blender/freestyle/intern/scene_graph/NodeTransform.h
index a9729390e74..29760cd1951 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeTransform.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeTransform.h
@@ -17,9 +17,10 @@
#ifndef __FREESTYLE_NODE_TRANSFORM_H__
#define __FREESTYLE_NODE_TRANSFORM_H__
-/** \file \ingroup freestyle
- * \brief Class to represent a transform node. A Transform node contains one or several children,
- * \brief all affected by the transformation.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to represent a transform node. A Transform node contains one or several children,
+ * \brief all affected by the transformation.
*/
#include "NodeGroup.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeViewLayer.cpp b/source/blender/freestyle/intern/scene_graph/NodeViewLayer.cpp
index a5df96129e4..24e1e88afa0 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeViewLayer.cpp
+++ b/source/blender/freestyle/intern/scene_graph/NodeViewLayer.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to represent a scene render layer in Blender.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to represent a scene render layer in Blender.
*/
#include "NodeViewLayer.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeViewLayer.h b/source/blender/freestyle/intern/scene_graph/NodeViewLayer.h
index 41ddef7c1ce..9a646208dec 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeViewLayer.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeViewLayer.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_NODE_VIEW_LAYER_H__
#define __FREESTYLE_NODE_VIEW_LAYER_H__
-/** \file \ingroup freestyle
- * \brief Class to represent a view layer in Blender.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to represent a view layer in Blender.
*/
#include "Node.h"
diff --git a/source/blender/freestyle/intern/scene_graph/OrientedLineRep.cpp b/source/blender/freestyle/intern/scene_graph/OrientedLineRep.cpp
index a9b88ad9618..ba1dfe7478e 100644
--- a/source/blender/freestyle/intern/scene_graph/OrientedLineRep.cpp
+++ b/source/blender/freestyle/intern/scene_graph/OrientedLineRep.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to display an oriented line representation.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to display an oriented line representation.
*/
#include "OrientedLineRep.h"
diff --git a/source/blender/freestyle/intern/scene_graph/OrientedLineRep.h b/source/blender/freestyle/intern/scene_graph/OrientedLineRep.h
index 7cb6738d379..af06840419e 100644
--- a/source/blender/freestyle/intern/scene_graph/OrientedLineRep.h
+++ b/source/blender/freestyle/intern/scene_graph/OrientedLineRep.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_ORIENTED_LINE_REP_H__
#define __FREESTYLE_ORIENTED_LINE_REP_H__
-/** \file \ingroup freestyle
- * \brief Class to display an oriented line representation.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to display an oriented line representation.
*/
#include "LineRep.h"
diff --git a/source/blender/freestyle/intern/scene_graph/Rep.cpp b/source/blender/freestyle/intern/scene_graph/Rep.cpp
index df8db2a536e..94f6e1fa9d3 100644
--- a/source/blender/freestyle/intern/scene_graph/Rep.cpp
+++ b/source/blender/freestyle/intern/scene_graph/Rep.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Base class for all shapes. Inherits from BasicObjects for references counter management (addRef, release).
+/** \file
+ * \ingroup freestyle
+ * \brief Base class for all shapes. Inherits from BasicObjects for references counter management (addRef, release).
*/
#include "Rep.h"
diff --git a/source/blender/freestyle/intern/scene_graph/Rep.h b/source/blender/freestyle/intern/scene_graph/Rep.h
index 0677a239797..db4e9e6782b 100644
--- a/source/blender/freestyle/intern/scene_graph/Rep.h
+++ b/source/blender/freestyle/intern/scene_graph/Rep.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_REP_H__
#define __FREESTYLE_REP_H__
-/** \file \ingroup freestyle
- * \brief Base class for all shapes. Inherits from BasicObjects for references counter management (addRef, release).
+/** \file
+ * \ingroup freestyle
+ * \brief Base class for all shapes. Inherits from BasicObjects for references counter management (addRef, release).
*/
#include <string>
diff --git a/source/blender/freestyle/intern/scene_graph/SceneHash.cpp b/source/blender/freestyle/intern/scene_graph/SceneHash.cpp
index 8a2c675cbe4..fcecb67cae9 100644
--- a/source/blender/freestyle/intern/scene_graph/SceneHash.cpp
+++ b/source/blender/freestyle/intern/scene_graph/SceneHash.cpp
@@ -14,7 +14,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
+/** \file
+ * \ingroup freestyle
*/
#include "SceneHash.h"
diff --git a/source/blender/freestyle/intern/scene_graph/SceneHash.h b/source/blender/freestyle/intern/scene_graph/SceneHash.h
index e7229816989..4c6bd6216d0 100644
--- a/source/blender/freestyle/intern/scene_graph/SceneHash.h
+++ b/source/blender/freestyle/intern/scene_graph/SceneHash.h
@@ -17,7 +17,8 @@
#ifndef __FREESTYLE_SCENE_HASH_H__
#define __FREESTYLE_SCENE_HASH_H__
-/** \file \ingroup freestyle
+/** \file
+ * \ingroup freestyle
*/
#include "IndexedFaceSet.h"
diff --git a/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.cpp b/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.cpp
index ad5f66a5d52..29da69a37ee 100644
--- a/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.cpp
+++ b/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to display textual information about a scene graph.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to display textual information about a scene graph.
*/
#include <iomanip>
diff --git a/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h b/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h
index bdb4031f510..715f78ab044 100644
--- a/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h
+++ b/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_SCENE_PRETTY_PRINTER_H__
#define __FREESTYLE_SCENE_PRETTY_PRINTER_H__
-/** \file \ingroup freestyle
- * \brief Class to display textual information about a scene graph.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to display textual information about a scene graph.
*/
#include <fstream>
diff --git a/source/blender/freestyle/intern/scene_graph/SceneVisitor.cpp b/source/blender/freestyle/intern/scene_graph/SceneVisitor.cpp
index 2e0521675a2..417dc381eec 100644
--- a/source/blender/freestyle/intern/scene_graph/SceneVisitor.cpp
+++ b/source/blender/freestyle/intern/scene_graph/SceneVisitor.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to visit (without doing anything) a scene graph structure
+/** \file
+ * \ingroup freestyle
+ * \brief Class to visit (without doing anything) a scene graph structure
*/
#include "SceneVisitor.h"
diff --git a/source/blender/freestyle/intern/scene_graph/SceneVisitor.h b/source/blender/freestyle/intern/scene_graph/SceneVisitor.h
index 790507c1fdf..67b89f014cf 100644
--- a/source/blender/freestyle/intern/scene_graph/SceneVisitor.h
+++ b/source/blender/freestyle/intern/scene_graph/SceneVisitor.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_SCENE_VISITOR_H__
#define __FREESTYLE_SCENE_VISITOR_H__
-/** \file \ingroup freestyle
- * \brief Class to visit (without doing anything) a scene graph structure
+/** \file
+ * \ingroup freestyle
+ * \brief Class to visit (without doing anything) a scene graph structure
*/
#include "../system/FreestyleConfig.h"
diff --git a/source/blender/freestyle/intern/scene_graph/TriangleRep.cpp b/source/blender/freestyle/intern/scene_graph/TriangleRep.cpp
index 048a7e36df7..dbd5efc65f5 100644
--- a/source/blender/freestyle/intern/scene_graph/TriangleRep.cpp
+++ b/source/blender/freestyle/intern/scene_graph/TriangleRep.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to define the represenation of a triangle
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define the represenation of a triangle
*/
#include "TriangleRep.h"
diff --git a/source/blender/freestyle/intern/scene_graph/TriangleRep.h b/source/blender/freestyle/intern/scene_graph/TriangleRep.h
index 5d18845cb70..364943a14ba 100644
--- a/source/blender/freestyle/intern/scene_graph/TriangleRep.h
+++ b/source/blender/freestyle/intern/scene_graph/TriangleRep.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_TRIANGLE_REP_H__
#define __FREESTYLE_TRIANGLE_REP_H__
-/** \file \ingroup freestyle
- * \brief Class to define the represenation of a triangle
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define the represenation of a triangle
*/
//! inherits from class Rep
diff --git a/source/blender/freestyle/intern/scene_graph/VertexRep.cpp b/source/blender/freestyle/intern/scene_graph/VertexRep.cpp
index 416ab77c2a5..47462d0f497 100644
--- a/source/blender/freestyle/intern/scene_graph/VertexRep.cpp
+++ b/source/blender/freestyle/intern/scene_graph/VertexRep.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to define the representation of a vertex for displaying purpose.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define the representation of a vertex for displaying purpose.
*/
#include "VertexRep.h"
diff --git a/source/blender/freestyle/intern/scene_graph/VertexRep.h b/source/blender/freestyle/intern/scene_graph/VertexRep.h
index acc65319d6c..8d3e66d7323 100644
--- a/source/blender/freestyle/intern/scene_graph/VertexRep.h
+++ b/source/blender/freestyle/intern/scene_graph/VertexRep.h
@@ -17,8 +17,9 @@
#ifndef __FREESTYLE_VERTEX_REP_H__
#define __FREESTYLE_VERTEX_REP_H__
-/** \file \ingroup freestyle
- * \brief Class to define the representation of a vertex for displaying purpose.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define the representation of a vertex for displaying purpose.
*/
#include "Rep.h"