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:
authorCampbell Barton <ideasman42@gmail.com>2019-02-06 07:42:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-06 07:45:22 +0300
commiteef4077f18495d88a2426cfda3ec9a4dc461f798 (patch)
tree0042b131bafa216f8ee69546085f2841a1a13513 /source/blender/freestyle/intern/geometry
parent1085c2cc44573b77a74baae8f4be9771941d58da (diff)
Cleanup: remove redundant doxygen \file argument
Move \ingroup onto same line to be more compact and make it clear the file is in the group.
Diffstat (limited to 'source/blender/freestyle/intern/geometry')
-rw-r--r--source/blender/freestyle/intern/geometry/BBox.h3
-rw-r--r--source/blender/freestyle/intern/geometry/Bezier.cpp3
-rw-r--r--source/blender/freestyle/intern/geometry/Bezier.h3
-rw-r--r--source/blender/freestyle/intern/geometry/FastGrid.cpp3
-rw-r--r--source/blender/freestyle/intern/geometry/FastGrid.h3
-rw-r--r--source/blender/freestyle/intern/geometry/FitCurve.cpp3
-rw-r--r--source/blender/freestyle/intern/geometry/FitCurve.h3
-rw-r--r--source/blender/freestyle/intern/geometry/Geom.h3
-rw-r--r--source/blender/freestyle/intern/geometry/GeomCleaner.cpp3
-rw-r--r--source/blender/freestyle/intern/geometry/GeomCleaner.h3
-rw-r--r--source/blender/freestyle/intern/geometry/GeomUtils.cpp3
-rw-r--r--source/blender/freestyle/intern/geometry/GeomUtils.h3
-rw-r--r--source/blender/freestyle/intern/geometry/Grid.cpp3
-rw-r--r--source/blender/freestyle/intern/geometry/Grid.h3
-rw-r--r--source/blender/freestyle/intern/geometry/GridHelpers.cpp3
-rw-r--r--source/blender/freestyle/intern/geometry/GridHelpers.h3
-rw-r--r--source/blender/freestyle/intern/geometry/HashGrid.cpp3
-rw-r--r--source/blender/freestyle/intern/geometry/HashGrid.h3
-rw-r--r--source/blender/freestyle/intern/geometry/Noise.cpp3
-rw-r--r--source/blender/freestyle/intern/geometry/Noise.h3
-rw-r--r--source/blender/freestyle/intern/geometry/Polygon.h3
-rw-r--r--source/blender/freestyle/intern/geometry/SweepLine.h3
-rw-r--r--source/blender/freestyle/intern/geometry/VecMat.h3
-rw-r--r--source/blender/freestyle/intern/geometry/matrix_util.cpp3
-rw-r--r--source/blender/freestyle/intern/geometry/matrix_util.h3
-rw-r--r--source/blender/freestyle/intern/geometry/normal_cycle.cpp3
-rw-r--r--source/blender/freestyle/intern/geometry/normal_cycle.h3
27 files changed, 27 insertions, 54 deletions
diff --git a/source/blender/freestyle/intern/geometry/BBox.h b/source/blender/freestyle/intern/geometry/BBox.h
index 2ce5a8c5464..15fd2034819 100644
--- a/source/blender/freestyle/intern/geometry/BBox.h
+++ b/source/blender/freestyle/intern/geometry/BBox.h
@@ -17,8 +17,7 @@
#ifndef __BBOX_H__
#define __BBOX_H__
-/** \file blender/freestyle/intern/geometry/BBox.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief A class to hold a bounding box
*/
diff --git a/source/blender/freestyle/intern/geometry/Bezier.cpp b/source/blender/freestyle/intern/geometry/Bezier.cpp
index 3a160be0033..d5adaedac81 100644
--- a/source/blender/freestyle/intern/geometry/Bezier.cpp
+++ b/source/blender/freestyle/intern/geometry/Bezier.cpp
@@ -14,8 +14,7 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file blender/freestyle/intern/geometry/Bezier.cpp
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Class to define a Bezier curve of order 4.
*/
diff --git a/source/blender/freestyle/intern/geometry/Bezier.h b/source/blender/freestyle/intern/geometry/Bezier.h
index 52af6daf03c..a5600da7115 100644
--- a/source/blender/freestyle/intern/geometry/Bezier.h
+++ b/source/blender/freestyle/intern/geometry/Bezier.h
@@ -17,8 +17,7 @@
#ifndef __BEZIER_H__
#define __BEZIER_H__
-/** \file blender/freestyle/intern/geometry/Bezier.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Class to define a Bezier curve of order 4.
*/
diff --git a/source/blender/freestyle/intern/geometry/FastGrid.cpp b/source/blender/freestyle/intern/geometry/FastGrid.cpp
index 2037d8f5f97..2f8a3d6d067 100644
--- a/source/blender/freestyle/intern/geometry/FastGrid.cpp
+++ b/source/blender/freestyle/intern/geometry/FastGrid.cpp
@@ -14,8 +14,7 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file blender/freestyle/intern/geometry/FastGrid.cpp
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Class to define a cell grid surrounding the bounding box of the scene
*/
diff --git a/source/blender/freestyle/intern/geometry/FastGrid.h b/source/blender/freestyle/intern/geometry/FastGrid.h
index d8b370b425f..9ed9c507ac4 100644
--- a/source/blender/freestyle/intern/geometry/FastGrid.h
+++ b/source/blender/freestyle/intern/geometry/FastGrid.h
@@ -17,8 +17,7 @@
#ifndef __FASTGRID_H__
#define __FASTGRID_H__
-/** \file blender/freestyle/intern/geometry/FastGrid.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Class to define a cell grid surrounding the bounding box of the scene
*/
diff --git a/source/blender/freestyle/intern/geometry/FitCurve.cpp b/source/blender/freestyle/intern/geometry/FitCurve.cpp
index d441052a0d7..33b5e7f2902 100644
--- a/source/blender/freestyle/intern/geometry/FitCurve.cpp
+++ b/source/blender/freestyle/intern/geometry/FitCurve.cpp
@@ -14,8 +14,7 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file blender/freestyle/intern/geometry/FitCurve.cpp
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief An Algorithm for Automatically Fitting Digitized Curves by Philip J. Schneider,
* \brief from "Graphics Gems", Academic Press, 1990
*/
diff --git a/source/blender/freestyle/intern/geometry/FitCurve.h b/source/blender/freestyle/intern/geometry/FitCurve.h
index 96771e12c49..7e778aa4552 100644
--- a/source/blender/freestyle/intern/geometry/FitCurve.h
+++ b/source/blender/freestyle/intern/geometry/FitCurve.h
@@ -17,8 +17,7 @@
#ifndef __FITCURVE_H__
#define __FITCURVE_H__
-/** \file blender/freestyle/intern/geometry/FitCurve.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief An Algorithm for Automatically Fitting Digitized Curves by Philip J. Schneider,
* \brief from "Graphics Gems", Academic Press, 1990
*/
diff --git a/source/blender/freestyle/intern/geometry/Geom.h b/source/blender/freestyle/intern/geometry/Geom.h
index 57e30aa53cb..646b80839c1 100644
--- a/source/blender/freestyle/intern/geometry/Geom.h
+++ b/source/blender/freestyle/intern/geometry/Geom.h
@@ -17,8 +17,7 @@
#ifndef __GEOM_H__
#define __GEOM_H__
-/** \file blender/freestyle/intern/geometry/Geom.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Vectors and Matrices (useful type definitions)
*/
diff --git a/source/blender/freestyle/intern/geometry/GeomCleaner.cpp b/source/blender/freestyle/intern/geometry/GeomCleaner.cpp
index c3b63c239da..92af5bdee38 100644
--- a/source/blender/freestyle/intern/geometry/GeomCleaner.cpp
+++ b/source/blender/freestyle/intern/geometry/GeomCleaner.cpp
@@ -14,8 +14,7 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file blender/freestyle/intern/geometry/GeomCleaner.cpp
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Class to define a cleaner of geometry providing a set of useful tools
*/
diff --git a/source/blender/freestyle/intern/geometry/GeomCleaner.h b/source/blender/freestyle/intern/geometry/GeomCleaner.h
index 8e056c4bc28..1a7ff9acd10 100644
--- a/source/blender/freestyle/intern/geometry/GeomCleaner.h
+++ b/source/blender/freestyle/intern/geometry/GeomCleaner.h
@@ -17,8 +17,7 @@
#ifndef __GEOMCLEANER_H__
#define __GEOMCLEANER_H__
-/** \file blender/freestyle/intern/geometry/GeomCleaner.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Class to define a cleaner of geometry providing a set of useful tools
*/
diff --git a/source/blender/freestyle/intern/geometry/GeomUtils.cpp b/source/blender/freestyle/intern/geometry/GeomUtils.cpp
index 8c9d947d04e..6e0edaa881f 100644
--- a/source/blender/freestyle/intern/geometry/GeomUtils.cpp
+++ b/source/blender/freestyle/intern/geometry/GeomUtils.cpp
@@ -14,8 +14,7 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file blender/freestyle/intern/geometry/GeomUtils.cpp
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Various tools for geometry
*/
diff --git a/source/blender/freestyle/intern/geometry/GeomUtils.h b/source/blender/freestyle/intern/geometry/GeomUtils.h
index 4ae29069ffb..01dae812b6c 100644
--- a/source/blender/freestyle/intern/geometry/GeomUtils.h
+++ b/source/blender/freestyle/intern/geometry/GeomUtils.h
@@ -17,8 +17,7 @@
#ifndef __GEOMUTILS_H__
#define __GEOMUTILS_H__
-/** \file blender/freestyle/intern/geometry/GeomUtils.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Various tools for geometry
*/
diff --git a/source/blender/freestyle/intern/geometry/Grid.cpp b/source/blender/freestyle/intern/geometry/Grid.cpp
index 6491a380c99..14839d5149d 100644
--- a/source/blender/freestyle/intern/geometry/Grid.cpp
+++ b/source/blender/freestyle/intern/geometry/Grid.cpp
@@ -14,8 +14,7 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file blender/freestyle/intern/geometry/Grid.cpp
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Base class to define a cell grid surrounding the bounding box of the scene
*/
diff --git a/source/blender/freestyle/intern/geometry/Grid.h b/source/blender/freestyle/intern/geometry/Grid.h
index fd276d50537..fbff6dbf7cb 100644
--- a/source/blender/freestyle/intern/geometry/Grid.h
+++ b/source/blender/freestyle/intern/geometry/Grid.h
@@ -17,8 +17,7 @@
#ifndef __GRID_H__
#define __GRID_H__
-/** \file blender/freestyle/intern/geometry/Grid.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Base class to define a cell grid surrounding the bounding box of the scene
*/
diff --git a/source/blender/freestyle/intern/geometry/GridHelpers.cpp b/source/blender/freestyle/intern/geometry/GridHelpers.cpp
index 6bd7f98ac8b..fab1c595bad 100644
--- a/source/blender/freestyle/intern/geometry/GridHelpers.cpp
+++ b/source/blender/freestyle/intern/geometry/GridHelpers.cpp
@@ -14,8 +14,7 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file blender/freestyle/intern/geometry/GridHelpers.cpp
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Class to define a cell grid surrounding the projected image of a scene
*/
diff --git a/source/blender/freestyle/intern/geometry/GridHelpers.h b/source/blender/freestyle/intern/geometry/GridHelpers.h
index 29c6c00d492..c5dedf53d03 100644
--- a/source/blender/freestyle/intern/geometry/GridHelpers.h
+++ b/source/blender/freestyle/intern/geometry/GridHelpers.h
@@ -17,8 +17,7 @@
#ifndef __GRIDHELPERS_H__
#define __GRIDHELPERS_H__
-/** \file blender/freestyle/intern/geometry/GridHelpers.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Class to define a cell grid surrounding the projected image of a scene
*/
diff --git a/source/blender/freestyle/intern/geometry/HashGrid.cpp b/source/blender/freestyle/intern/geometry/HashGrid.cpp
index 4df9b10fbff..d834deaf2e3 100644
--- a/source/blender/freestyle/intern/geometry/HashGrid.cpp
+++ b/source/blender/freestyle/intern/geometry/HashGrid.cpp
@@ -14,8 +14,7 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file blender/freestyle/intern/geometry/HashGrid.cpp
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Class to define a cell grid surrounding the bounding box of the scene
*/
diff --git a/source/blender/freestyle/intern/geometry/HashGrid.h b/source/blender/freestyle/intern/geometry/HashGrid.h
index 1195504ee2f..9a29a5f10b3 100644
--- a/source/blender/freestyle/intern/geometry/HashGrid.h
+++ b/source/blender/freestyle/intern/geometry/HashGrid.h
@@ -17,8 +17,7 @@
#ifndef __HASHGRID_H__
#define __HASHGRID_H__
-/** \file blender/freestyle/intern/geometry/HashGrid.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Class to define a cell grid surrounding the bounding box of the scene
*/
diff --git a/source/blender/freestyle/intern/geometry/Noise.cpp b/source/blender/freestyle/intern/geometry/Noise.cpp
index d71df60db07..868f7cd5eee 100644
--- a/source/blender/freestyle/intern/geometry/Noise.cpp
+++ b/source/blender/freestyle/intern/geometry/Noise.cpp
@@ -14,8 +14,7 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file blender/freestyle/intern/geometry/Noise.cpp
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Class to define Perlin noise
*/
diff --git a/source/blender/freestyle/intern/geometry/Noise.h b/source/blender/freestyle/intern/geometry/Noise.h
index 742ef672e7e..efb95fd4ac5 100644
--- a/source/blender/freestyle/intern/geometry/Noise.h
+++ b/source/blender/freestyle/intern/geometry/Noise.h
@@ -17,8 +17,7 @@
#ifndef __NOISE_H__
#define __NOISE_H__
-/** \file blender/freestyle/intern/geometry/Noise.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Class to define Perlin noise
*/
diff --git a/source/blender/freestyle/intern/geometry/Polygon.h b/source/blender/freestyle/intern/geometry/Polygon.h
index 95a2075b071..799ca536ffd 100644
--- a/source/blender/freestyle/intern/geometry/Polygon.h
+++ b/source/blender/freestyle/intern/geometry/Polygon.h
@@ -17,8 +17,7 @@
#ifndef __POLYGON_H__
#define __POLYGON_H__
-/** \file blender/freestyle/intern/geometry/Polygon.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Class to define a polygon
*/
diff --git a/source/blender/freestyle/intern/geometry/SweepLine.h b/source/blender/freestyle/intern/geometry/SweepLine.h
index b1a7ea50241..63a96d1371b 100644
--- a/source/blender/freestyle/intern/geometry/SweepLine.h
+++ b/source/blender/freestyle/intern/geometry/SweepLine.h
@@ -17,8 +17,7 @@
#ifndef __SWEEPLINE_H__
#define __SWEEPLINE_H__
-/** \file blender/freestyle/intern/geometry/SweepLine.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Class to define a Sweep Line
*/
diff --git a/source/blender/freestyle/intern/geometry/VecMat.h b/source/blender/freestyle/intern/geometry/VecMat.h
index 55b63336eb6..fb30c518352 100644
--- a/source/blender/freestyle/intern/geometry/VecMat.h
+++ b/source/blender/freestyle/intern/geometry/VecMat.h
@@ -17,8 +17,7 @@
#ifndef __VECMAT_H__
#define __VECMAT_H__
-/** \file blender/freestyle/intern/geometry/VecMat.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
* \brief Vectors and Matrices definition and manipulation
*/
diff --git a/source/blender/freestyle/intern/geometry/matrix_util.cpp b/source/blender/freestyle/intern/geometry/matrix_util.cpp
index d392da3af78..77bd832ccfa 100644
--- a/source/blender/freestyle/intern/geometry/matrix_util.cpp
+++ b/source/blender/freestyle/intern/geometry/matrix_util.cpp
@@ -25,8 +25,7 @@
* FRANCE
*/
-/** \file blender/freestyle/intern/geometry/matrix_util.cpp
- * \ingroup freestyle
+/** \file \ingroup freestyle
*/
#include "matrix_util.h"
diff --git a/source/blender/freestyle/intern/geometry/matrix_util.h b/source/blender/freestyle/intern/geometry/matrix_util.h
index 5447824be33..7fabeb5b0ef 100644
--- a/source/blender/freestyle/intern/geometry/matrix_util.h
+++ b/source/blender/freestyle/intern/geometry/matrix_util.h
@@ -28,8 +28,7 @@
#ifndef __MATRIX_UTIL__
#define __MATRIX_UTIL__
-/** \file blender/freestyle/intern/geometry/matrix_util.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
*/
#include "../system/FreestyleConfig.h"
diff --git a/source/blender/freestyle/intern/geometry/normal_cycle.cpp b/source/blender/freestyle/intern/geometry/normal_cycle.cpp
index 8a7e1b80ecf..49176f54a7c 100644
--- a/source/blender/freestyle/intern/geometry/normal_cycle.cpp
+++ b/source/blender/freestyle/intern/geometry/normal_cycle.cpp
@@ -25,8 +25,7 @@
* FRANCE
*/
-/** \file blender/freestyle/intern/geometry/normal_cycle.cpp
- * \ingroup freestyle
+/** \file \ingroup freestyle
*/
#include "matrix_util.h"
diff --git a/source/blender/freestyle/intern/geometry/normal_cycle.h b/source/blender/freestyle/intern/geometry/normal_cycle.h
index f59d01f33eb..c392a7d2e1b 100644
--- a/source/blender/freestyle/intern/geometry/normal_cycle.h
+++ b/source/blender/freestyle/intern/geometry/normal_cycle.h
@@ -28,8 +28,7 @@
#ifndef __MESH_TOOLS_MATH_NORMAL_CYCLE__
#define __MESH_TOOLS_MATH_NORMAL_CYCLE__
-/** \file blender/freestyle/intern/geometry/normal_cycle.h
- * \ingroup freestyle
+/** \file \ingroup freestyle
*/
#include "Geom.h"