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/geometry')
-rw-r--r--source/blender/freestyle/intern/geometry/BBox.h5
-rw-r--r--source/blender/freestyle/intern/geometry/Bezier.cpp5
-rw-r--r--source/blender/freestyle/intern/geometry/Bezier.h5
-rw-r--r--source/blender/freestyle/intern/geometry/FastGrid.cpp5
-rw-r--r--source/blender/freestyle/intern/geometry/FastGrid.h5
-rw-r--r--source/blender/freestyle/intern/geometry/FitCurve.cpp7
-rw-r--r--source/blender/freestyle/intern/geometry/FitCurve.h7
-rw-r--r--source/blender/freestyle/intern/geometry/Geom.h5
-rw-r--r--source/blender/freestyle/intern/geometry/GeomCleaner.cpp5
-rw-r--r--source/blender/freestyle/intern/geometry/GeomCleaner.h5
-rw-r--r--source/blender/freestyle/intern/geometry/GeomUtils.cpp5
-rw-r--r--source/blender/freestyle/intern/geometry/GeomUtils.h5
-rw-r--r--source/blender/freestyle/intern/geometry/Grid.cpp5
-rw-r--r--source/blender/freestyle/intern/geometry/Grid.h5
-rw-r--r--source/blender/freestyle/intern/geometry/GridHelpers.cpp5
-rw-r--r--source/blender/freestyle/intern/geometry/GridHelpers.h5
-rw-r--r--source/blender/freestyle/intern/geometry/HashGrid.cpp5
-rw-r--r--source/blender/freestyle/intern/geometry/HashGrid.h5
-rw-r--r--source/blender/freestyle/intern/geometry/Noise.cpp5
-rw-r--r--source/blender/freestyle/intern/geometry/Noise.h5
-rw-r--r--source/blender/freestyle/intern/geometry/Polygon.h5
-rw-r--r--source/blender/freestyle/intern/geometry/SweepLine.h5
-rw-r--r--source/blender/freestyle/intern/geometry/VecMat.h5
-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, 79 insertions, 52 deletions
diff --git a/source/blender/freestyle/intern/geometry/BBox.h b/source/blender/freestyle/intern/geometry/BBox.h
index 15fd2034819..741d4e6715e 100644
--- a/source/blender/freestyle/intern/geometry/BBox.h
+++ b/source/blender/freestyle/intern/geometry/BBox.h
@@ -17,8 +17,9 @@
#ifndef __BBOX_H__
#define __BBOX_H__
-/** \file \ingroup freestyle
- * \brief A class to hold a bounding box
+/** \file
+ * \ingroup freestyle
+ * \brief A class to hold a bounding box
*/
#include <stdlib.h>
diff --git a/source/blender/freestyle/intern/geometry/Bezier.cpp b/source/blender/freestyle/intern/geometry/Bezier.cpp
index d5adaedac81..aeac71fca11 100644
--- a/source/blender/freestyle/intern/geometry/Bezier.cpp
+++ b/source/blender/freestyle/intern/geometry/Bezier.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to define a Bezier curve of order 4.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define a Bezier curve of order 4.
*/
#include "Bezier.h"
diff --git a/source/blender/freestyle/intern/geometry/Bezier.h b/source/blender/freestyle/intern/geometry/Bezier.h
index a5600da7115..babeb3e9e57 100644
--- a/source/blender/freestyle/intern/geometry/Bezier.h
+++ b/source/blender/freestyle/intern/geometry/Bezier.h
@@ -17,8 +17,9 @@
#ifndef __BEZIER_H__
#define __BEZIER_H__
-/** \file \ingroup freestyle
- * \brief Class to define a Bezier curve of order 4.
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define a Bezier curve of order 4.
*/
#include <vector>
diff --git a/source/blender/freestyle/intern/geometry/FastGrid.cpp b/source/blender/freestyle/intern/geometry/FastGrid.cpp
index 2f8a3d6d067..dec22e67acb 100644
--- a/source/blender/freestyle/intern/geometry/FastGrid.cpp
+++ b/source/blender/freestyle/intern/geometry/FastGrid.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to define a cell grid surrounding the bounding box of the scene
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define a cell grid surrounding the bounding box of the scene
*/
#include <cstdlib>
diff --git a/source/blender/freestyle/intern/geometry/FastGrid.h b/source/blender/freestyle/intern/geometry/FastGrid.h
index 9ed9c507ac4..8c22703a68c 100644
--- a/source/blender/freestyle/intern/geometry/FastGrid.h
+++ b/source/blender/freestyle/intern/geometry/FastGrid.h
@@ -17,8 +17,9 @@
#ifndef __FASTGRID_H__
#define __FASTGRID_H__
-/** \file \ingroup freestyle
- * \brief Class to define a cell grid surrounding the bounding box of the scene
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define a cell grid surrounding the bounding box of the scene
*/
#include "Grid.h"
diff --git a/source/blender/freestyle/intern/geometry/FitCurve.cpp b/source/blender/freestyle/intern/geometry/FitCurve.cpp
index 33b5e7f2902..9e12507b896 100644
--- a/source/blender/freestyle/intern/geometry/FitCurve.cpp
+++ b/source/blender/freestyle/intern/geometry/FitCurve.cpp
@@ -14,9 +14,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief An Algorithm for Automatically Fitting Digitized Curves by Philip J. Schneider,
- * \brief from "Graphics Gems", Academic Press, 1990
+/** \file
+ * \ingroup freestyle
+ * \brief An Algorithm for Automatically Fitting Digitized Curves by Philip J. Schneider,
+ * \brief from "Graphics Gems", Academic Press, 1990
*/
#include <cstdlib> // for malloc and free
diff --git a/source/blender/freestyle/intern/geometry/FitCurve.h b/source/blender/freestyle/intern/geometry/FitCurve.h
index 7e778aa4552..f32549ed526 100644
--- a/source/blender/freestyle/intern/geometry/FitCurve.h
+++ b/source/blender/freestyle/intern/geometry/FitCurve.h
@@ -17,9 +17,10 @@
#ifndef __FITCURVE_H__
#define __FITCURVE_H__
-/** \file \ingroup freestyle
- * \brief An Algorithm for Automatically Fitting Digitized Curves by Philip J. Schneider,
- * \brief from "Graphics Gems", Academic Press, 1990
+/** \file
+ * \ingroup freestyle
+ * \brief An Algorithm for Automatically Fitting Digitized Curves by Philip J. Schneider,
+ * \brief from "Graphics Gems", Academic Press, 1990
*/
#include <vector>
diff --git a/source/blender/freestyle/intern/geometry/Geom.h b/source/blender/freestyle/intern/geometry/Geom.h
index 646b80839c1..ecd07f88835 100644
--- a/source/blender/freestyle/intern/geometry/Geom.h
+++ b/source/blender/freestyle/intern/geometry/Geom.h
@@ -17,8 +17,9 @@
#ifndef __GEOM_H__
#define __GEOM_H__
-/** \file \ingroup freestyle
- * \brief Vectors and Matrices (useful type definitions)
+/** \file
+ * \ingroup freestyle
+ * \brief Vectors and Matrices (useful type definitions)
*/
#include "VecMat.h"
diff --git a/source/blender/freestyle/intern/geometry/GeomCleaner.cpp b/source/blender/freestyle/intern/geometry/GeomCleaner.cpp
index 92af5bdee38..9643593a03d 100644
--- a/source/blender/freestyle/intern/geometry/GeomCleaner.cpp
+++ b/source/blender/freestyle/intern/geometry/GeomCleaner.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to define a cleaner of geometry providing a set of useful tools
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define a cleaner of geometry providing a set of useful tools
*/
#if 0
diff --git a/source/blender/freestyle/intern/geometry/GeomCleaner.h b/source/blender/freestyle/intern/geometry/GeomCleaner.h
index 1a7ff9acd10..32bcc244f69 100644
--- a/source/blender/freestyle/intern/geometry/GeomCleaner.h
+++ b/source/blender/freestyle/intern/geometry/GeomCleaner.h
@@ -17,8 +17,9 @@
#ifndef __GEOMCLEANER_H__
#define __GEOMCLEANER_H__
-/** \file \ingroup freestyle
- * \brief Class to define a cleaner of geometry providing a set of useful tools
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define a cleaner of geometry providing a set of useful tools
*/
#include "Geom.h"
diff --git a/source/blender/freestyle/intern/geometry/GeomUtils.cpp b/source/blender/freestyle/intern/geometry/GeomUtils.cpp
index 6e0edaa881f..da7774d3843 100644
--- a/source/blender/freestyle/intern/geometry/GeomUtils.cpp
+++ b/source/blender/freestyle/intern/geometry/GeomUtils.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Various tools for geometry
+/** \file
+ * \ingroup freestyle
+ * \brief Various tools for geometry
*/
#include "GeomUtils.h"
diff --git a/source/blender/freestyle/intern/geometry/GeomUtils.h b/source/blender/freestyle/intern/geometry/GeomUtils.h
index 01dae812b6c..94904b72ff1 100644
--- a/source/blender/freestyle/intern/geometry/GeomUtils.h
+++ b/source/blender/freestyle/intern/geometry/GeomUtils.h
@@ -17,8 +17,9 @@
#ifndef __GEOMUTILS_H__
#define __GEOMUTILS_H__
-/** \file \ingroup freestyle
- * \brief Various tools for geometry
+/** \file
+ * \ingroup freestyle
+ * \brief Various tools for geometry
*/
#include <vector>
diff --git a/source/blender/freestyle/intern/geometry/Grid.cpp b/source/blender/freestyle/intern/geometry/Grid.cpp
index 14839d5149d..e7d3cf1a8cc 100644
--- a/source/blender/freestyle/intern/geometry/Grid.cpp
+++ b/source/blender/freestyle/intern/geometry/Grid.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Base class to define a cell grid surrounding the bounding box of the scene
+/** \file
+ * \ingroup freestyle
+ * \brief Base class to define a cell grid surrounding the bounding box of the scene
*/
#include <stdexcept>
diff --git a/source/blender/freestyle/intern/geometry/Grid.h b/source/blender/freestyle/intern/geometry/Grid.h
index fbff6dbf7cb..c3a0f16a354 100644
--- a/source/blender/freestyle/intern/geometry/Grid.h
+++ b/source/blender/freestyle/intern/geometry/Grid.h
@@ -17,8 +17,9 @@
#ifndef __GRID_H__
#define __GRID_H__
-/** \file \ingroup freestyle
- * \brief Base class to define a cell grid surrounding the bounding box of the scene
+/** \file
+ * \ingroup freestyle
+ * \brief Base class to define a cell grid surrounding the bounding box of the scene
*/
#include <cstring> // for memset
diff --git a/source/blender/freestyle/intern/geometry/GridHelpers.cpp b/source/blender/freestyle/intern/geometry/GridHelpers.cpp
index fab1c595bad..09820043136 100644
--- a/source/blender/freestyle/intern/geometry/GridHelpers.cpp
+++ b/source/blender/freestyle/intern/geometry/GridHelpers.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to define a cell grid surrounding the projected image of a scene
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define a cell grid surrounding the projected image of a scene
*/
#include "GridHelpers.h"
diff --git a/source/blender/freestyle/intern/geometry/GridHelpers.h b/source/blender/freestyle/intern/geometry/GridHelpers.h
index c5dedf53d03..6b0f55e3d6f 100644
--- a/source/blender/freestyle/intern/geometry/GridHelpers.h
+++ b/source/blender/freestyle/intern/geometry/GridHelpers.h
@@ -17,8 +17,9 @@
#ifndef __GRIDHELPERS_H__
#define __GRIDHELPERS_H__
-/** \file \ingroup freestyle
- * \brief Class to define a cell grid surrounding the projected image of a scene
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define a cell grid surrounding the projected image of a scene
*/
#include <vector>
diff --git a/source/blender/freestyle/intern/geometry/HashGrid.cpp b/source/blender/freestyle/intern/geometry/HashGrid.cpp
index d834deaf2e3..4011dabe1f5 100644
--- a/source/blender/freestyle/intern/geometry/HashGrid.cpp
+++ b/source/blender/freestyle/intern/geometry/HashGrid.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to define a cell grid surrounding the bounding box of the scene
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define a cell grid surrounding the bounding box of the scene
*/
#include "HashGrid.h"
diff --git a/source/blender/freestyle/intern/geometry/HashGrid.h b/source/blender/freestyle/intern/geometry/HashGrid.h
index 9a29a5f10b3..289079fe0d9 100644
--- a/source/blender/freestyle/intern/geometry/HashGrid.h
+++ b/source/blender/freestyle/intern/geometry/HashGrid.h
@@ -17,8 +17,9 @@
#ifndef __HASHGRID_H__
#define __HASHGRID_H__
-/** \file \ingroup freestyle
- * \brief Class to define a cell grid surrounding the bounding box of the scene
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define a cell grid surrounding the bounding box of the scene
*/
#if 0
diff --git a/source/blender/freestyle/intern/geometry/Noise.cpp b/source/blender/freestyle/intern/geometry/Noise.cpp
index 868f7cd5eee..0764c89c8a3 100644
--- a/source/blender/freestyle/intern/geometry/Noise.cpp
+++ b/source/blender/freestyle/intern/geometry/Noise.cpp
@@ -14,8 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-/** \file \ingroup freestyle
- * \brief Class to define Perlin noise
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define Perlin noise
*/
#include <math.h>
diff --git a/source/blender/freestyle/intern/geometry/Noise.h b/source/blender/freestyle/intern/geometry/Noise.h
index efb95fd4ac5..6787e098306 100644
--- a/source/blender/freestyle/intern/geometry/Noise.h
+++ b/source/blender/freestyle/intern/geometry/Noise.h
@@ -17,8 +17,9 @@
#ifndef __NOISE_H__
#define __NOISE_H__
-/** \file \ingroup freestyle
- * \brief Class to define Perlin noise
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define Perlin noise
*/
#include "Geom.h"
diff --git a/source/blender/freestyle/intern/geometry/Polygon.h b/source/blender/freestyle/intern/geometry/Polygon.h
index 799ca536ffd..b2359f82477 100644
--- a/source/blender/freestyle/intern/geometry/Polygon.h
+++ b/source/blender/freestyle/intern/geometry/Polygon.h
@@ -17,8 +17,9 @@
#ifndef __POLYGON_H__
#define __POLYGON_H__
-/** \file \ingroup freestyle
- * \brief Class to define a polygon
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define a polygon
*/
#include <vector>
diff --git a/source/blender/freestyle/intern/geometry/SweepLine.h b/source/blender/freestyle/intern/geometry/SweepLine.h
index 63a96d1371b..d7e3badbe3a 100644
--- a/source/blender/freestyle/intern/geometry/SweepLine.h
+++ b/source/blender/freestyle/intern/geometry/SweepLine.h
@@ -17,8 +17,9 @@
#ifndef __SWEEPLINE_H__
#define __SWEEPLINE_H__
-/** \file \ingroup freestyle
- * \brief Class to define a Sweep Line
+/** \file
+ * \ingroup freestyle
+ * \brief Class to define a Sweep Line
*/
#include <list>
diff --git a/source/blender/freestyle/intern/geometry/VecMat.h b/source/blender/freestyle/intern/geometry/VecMat.h
index fb30c518352..2dd5c3f6718 100644
--- a/source/blender/freestyle/intern/geometry/VecMat.h
+++ b/source/blender/freestyle/intern/geometry/VecMat.h
@@ -17,8 +17,9 @@
#ifndef __VECMAT_H__
#define __VECMAT_H__
-/** \file \ingroup freestyle
- * \brief Vectors and Matrices definition and manipulation
+/** \file
+ * \ingroup freestyle
+ * \brief Vectors and Matrices definition and manipulation
*/
#include <iostream>
diff --git a/source/blender/freestyle/intern/geometry/matrix_util.cpp b/source/blender/freestyle/intern/geometry/matrix_util.cpp
index 77bd832ccfa..44490f4bde5 100644
--- a/source/blender/freestyle/intern/geometry/matrix_util.cpp
+++ b/source/blender/freestyle/intern/geometry/matrix_util.cpp
@@ -25,7 +25,8 @@
* FRANCE
*/
-/** \file \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 7fabeb5b0ef..b587a9e5738 100644
--- a/source/blender/freestyle/intern/geometry/matrix_util.h
+++ b/source/blender/freestyle/intern/geometry/matrix_util.h
@@ -28,7 +28,8 @@
#ifndef __MATRIX_UTIL__
#define __MATRIX_UTIL__
-/** \file \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 49176f54a7c..e0ef1ddfe12 100644
--- a/source/blender/freestyle/intern/geometry/normal_cycle.cpp
+++ b/source/blender/freestyle/intern/geometry/normal_cycle.cpp
@@ -25,7 +25,8 @@
* FRANCE
*/
-/** \file \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 c392a7d2e1b..275e5494962 100644
--- a/source/blender/freestyle/intern/geometry/normal_cycle.h
+++ b/source/blender/freestyle/intern/geometry/normal_cycle.h
@@ -28,7 +28,8 @@
#ifndef __MESH_TOOLS_MATH_NORMAL_CYCLE__
#define __MESH_TOOLS_MATH_NORMAL_CYCLE__
-/** \file \ingroup freestyle
+/** \file
+ * \ingroup freestyle
*/
#include "Geom.h"