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.h2
-rw-r--r--source/blender/freestyle/intern/geometry/Bezier.cpp2
-rw-r--r--source/blender/freestyle/intern/geometry/Bezier.h2
-rw-r--r--source/blender/freestyle/intern/geometry/FastGrid.cpp2
-rw-r--r--source/blender/freestyle/intern/geometry/FastGrid.h2
-rw-r--r--source/blender/freestyle/intern/geometry/FitCurve.cpp2
-rw-r--r--source/blender/freestyle/intern/geometry/FitCurve.h2
-rw-r--r--source/blender/freestyle/intern/geometry/Geom.h4
-rw-r--r--source/blender/freestyle/intern/geometry/GeomCleaner.cpp2
-rw-r--r--source/blender/freestyle/intern/geometry/GeomCleaner.h2
-rw-r--r--source/blender/freestyle/intern/geometry/GeomUtils.cpp2
-rw-r--r--source/blender/freestyle/intern/geometry/GeomUtils.h2
-rw-r--r--source/blender/freestyle/intern/geometry/Grid.cpp2
-rw-r--r--source/blender/freestyle/intern/geometry/Grid.h2
-rw-r--r--source/blender/freestyle/intern/geometry/GridHelpers.cpp2
-rw-r--r--source/blender/freestyle/intern/geometry/GridHelpers.h2
-rw-r--r--source/blender/freestyle/intern/geometry/HashGrid.cpp2
-rw-r--r--source/blender/freestyle/intern/geometry/HashGrid.h2
-rw-r--r--source/blender/freestyle/intern/geometry/Noise.cpp2
-rw-r--r--source/blender/freestyle/intern/geometry/Noise.h2
-rw-r--r--source/blender/freestyle/intern/geometry/Polygon.h2
-rw-r--r--source/blender/freestyle/intern/geometry/SweepLine.h2
-rw-r--r--source/blender/freestyle/intern/geometry/VecMat.h4
-rw-r--r--source/blender/freestyle/intern/geometry/matrix_util.cpp1
-rw-r--r--source/blender/freestyle/intern/geometry/matrix_util.h1
-rw-r--r--source/blender/freestyle/intern/geometry/normal_cycle.cpp1
-rw-r--r--source/blender/freestyle/intern/geometry/normal_cycle.h1
27 files changed, 0 insertions, 54 deletions
diff --git a/source/blender/freestyle/intern/geometry/BBox.h b/source/blender/freestyle/intern/geometry/BBox.h
index 9e6da1a0555..2ce5a8c5464 100644
--- a/source/blender/freestyle/intern/geometry/BBox.h
+++ b/source/blender/freestyle/intern/geometry/BBox.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/geometry/BBox.h
* \ingroup freestyle
* \brief A class to hold a bounding box
- * \author Stephane Grabli
- * \date 22/05/2003
*/
#include <stdlib.h>
diff --git a/source/blender/freestyle/intern/geometry/Bezier.cpp b/source/blender/freestyle/intern/geometry/Bezier.cpp
index 0d3a2b16052..3a160be0033 100644
--- a/source/blender/freestyle/intern/geometry/Bezier.cpp
+++ b/source/blender/freestyle/intern/geometry/Bezier.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/geometry/Bezier.cpp
* \ingroup freestyle
* \brief Class to define a Bezier curve of order 4.
- * \author Stephane Grabli
- * \date 04/06/2003
*/
#include "Bezier.h"
diff --git a/source/blender/freestyle/intern/geometry/Bezier.h b/source/blender/freestyle/intern/geometry/Bezier.h
index 6a812b9b4c5..52af6daf03c 100644
--- a/source/blender/freestyle/intern/geometry/Bezier.h
+++ b/source/blender/freestyle/intern/geometry/Bezier.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/geometry/Bezier.h
* \ingroup freestyle
* \brief Class to define a Bezier curve of order 4.
- * \author Stephane Grabli
- * \date 04/06/2003
*/
#include <vector>
diff --git a/source/blender/freestyle/intern/geometry/FastGrid.cpp b/source/blender/freestyle/intern/geometry/FastGrid.cpp
index 7281b5ab0a5..2037d8f5f97 100644
--- a/source/blender/freestyle/intern/geometry/FastGrid.cpp
+++ b/source/blender/freestyle/intern/geometry/FastGrid.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/geometry/FastGrid.cpp
* \ingroup freestyle
* \brief Class to define a cell grid surrounding the bounding box of the scene
- * \author Stephane Grabli
- * \date 30/07/2002
*/
#include <cstdlib>
diff --git a/source/blender/freestyle/intern/geometry/FastGrid.h b/source/blender/freestyle/intern/geometry/FastGrid.h
index b12fe36da29..d8b370b425f 100644
--- a/source/blender/freestyle/intern/geometry/FastGrid.h
+++ b/source/blender/freestyle/intern/geometry/FastGrid.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/geometry/FastGrid.h
* \ingroup freestyle
* \brief Class to define a cell grid surrounding the bounding box of the scene
- * \author Stephane Grabli
- * \date 30/07/2002
*/
#include "Grid.h"
diff --git a/source/blender/freestyle/intern/geometry/FitCurve.cpp b/source/blender/freestyle/intern/geometry/FitCurve.cpp
index ec44cf8d747..d441052a0d7 100644
--- a/source/blender/freestyle/intern/geometry/FitCurve.cpp
+++ b/source/blender/freestyle/intern/geometry/FitCurve.cpp
@@ -18,8 +18,6 @@
* \ingroup freestyle
* \brief An Algorithm for Automatically Fitting Digitized Curves by Philip J. Schneider,
* \brief from "Graphics Gems", Academic Press, 1990
- * \author Stephane Grabli
- * \date 06/06/2003
*/
#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 d20ee6db907..96771e12c49 100644
--- a/source/blender/freestyle/intern/geometry/FitCurve.h
+++ b/source/blender/freestyle/intern/geometry/FitCurve.h
@@ -21,8 +21,6 @@
* \ingroup freestyle
* \brief An Algorithm for Automatically Fitting Digitized Curves by Philip J. Schneider,
* \brief from "Graphics Gems", Academic Press, 1990
- * \author Stephane Grabli
- * \date 06/06/2003
*/
#include <vector>
diff --git a/source/blender/freestyle/intern/geometry/Geom.h b/source/blender/freestyle/intern/geometry/Geom.h
index e041ff7300d..57e30aa53cb 100644
--- a/source/blender/freestyle/intern/geometry/Geom.h
+++ b/source/blender/freestyle/intern/geometry/Geom.h
@@ -20,10 +20,6 @@
/** \file blender/freestyle/intern/geometry/Geom.h
* \ingroup freestyle
* \brief Vectors and Matrices (useful type definitions)
- * \author Sylvain Paris
- * \author Emmanuel Turquin
- * \author Stephane Grabli
- * \date 20/05/2003
*/
#include "VecMat.h"
diff --git a/source/blender/freestyle/intern/geometry/GeomCleaner.cpp b/source/blender/freestyle/intern/geometry/GeomCleaner.cpp
index 611766787f9..c3b63c239da 100644
--- a/source/blender/freestyle/intern/geometry/GeomCleaner.cpp
+++ b/source/blender/freestyle/intern/geometry/GeomCleaner.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/geometry/GeomCleaner.cpp
* \ingroup freestyle
* \brief Class to define a cleaner of geometry providing a set of useful tools
- * \author Stephane Grabli
- * \date 04/03/2002
*/
#if 0
diff --git a/source/blender/freestyle/intern/geometry/GeomCleaner.h b/source/blender/freestyle/intern/geometry/GeomCleaner.h
index 752f596b38c..8e056c4bc28 100644
--- a/source/blender/freestyle/intern/geometry/GeomCleaner.h
+++ b/source/blender/freestyle/intern/geometry/GeomCleaner.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/geometry/GeomCleaner.h
* \ingroup freestyle
* \brief Class to define a cleaner of geometry providing a set of useful tools
- * \author Stephane Grabli
- * \date 04/03/2002
*/
#include "Geom.h"
diff --git a/source/blender/freestyle/intern/geometry/GeomUtils.cpp b/source/blender/freestyle/intern/geometry/GeomUtils.cpp
index 1d8adf46973..82fd7d03800 100644
--- a/source/blender/freestyle/intern/geometry/GeomUtils.cpp
+++ b/source/blender/freestyle/intern/geometry/GeomUtils.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/geometry/GeomUtils.cpp
* \ingroup freestyle
* \brief Various tools for geometry
- * \author Stephane Grabli
- * \date 12/04/2002
*/
#include "GeomUtils.h"
diff --git a/source/blender/freestyle/intern/geometry/GeomUtils.h b/source/blender/freestyle/intern/geometry/GeomUtils.h
index e663ffc2bae..4ae29069ffb 100644
--- a/source/blender/freestyle/intern/geometry/GeomUtils.h
+++ b/source/blender/freestyle/intern/geometry/GeomUtils.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/geometry/GeomUtils.h
* \ingroup freestyle
* \brief Various tools for geometry
- * \author Stephane Grabli
- * \date 12/04/2002
*/
#include <vector>
diff --git a/source/blender/freestyle/intern/geometry/Grid.cpp b/source/blender/freestyle/intern/geometry/Grid.cpp
index 54d8c722774..6491a380c99 100644
--- a/source/blender/freestyle/intern/geometry/Grid.cpp
+++ b/source/blender/freestyle/intern/geometry/Grid.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/geometry/Grid.cpp
* \ingroup freestyle
* \brief Base class to define a cell grid surrounding the bounding box of the scene
- * \author Stephane Grabli
- * \date 30/07/2002
*/
#include <stdexcept>
diff --git a/source/blender/freestyle/intern/geometry/Grid.h b/source/blender/freestyle/intern/geometry/Grid.h
index 663eaa8282a..fd276d50537 100644
--- a/source/blender/freestyle/intern/geometry/Grid.h
+++ b/source/blender/freestyle/intern/geometry/Grid.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/geometry/Grid.h
* \ingroup freestyle
* \brief Base class to define a cell grid surrounding the bounding box of the scene
- * \author Stephane Grabli
- * \date 30/07/2002
*/
#include <cstring> // for memset
diff --git a/source/blender/freestyle/intern/geometry/GridHelpers.cpp b/source/blender/freestyle/intern/geometry/GridHelpers.cpp
index 0f93bd63fac..6bd7f98ac8b 100644
--- a/source/blender/freestyle/intern/geometry/GridHelpers.cpp
+++ b/source/blender/freestyle/intern/geometry/GridHelpers.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/geometry/GridHelpers.cpp
* \ingroup freestyle
* \brief Class to define a cell grid surrounding the projected image of a scene
- * \author Alexander Beels
- * \date 2010-12-21
*/
#include "GridHelpers.h"
diff --git a/source/blender/freestyle/intern/geometry/GridHelpers.h b/source/blender/freestyle/intern/geometry/GridHelpers.h
index 6cabb768551..99b72d0cbab 100644
--- a/source/blender/freestyle/intern/geometry/GridHelpers.h
+++ b/source/blender/freestyle/intern/geometry/GridHelpers.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/geometry/GridHelpers.h
* \ingroup freestyle
* \brief Class to define a cell grid surrounding the projected image of a scene
- * \author Alexander Beels
- * \date 2010-12-13
*/
#include <vector>
diff --git a/source/blender/freestyle/intern/geometry/HashGrid.cpp b/source/blender/freestyle/intern/geometry/HashGrid.cpp
index a79a76e4a4d..4df9b10fbff 100644
--- a/source/blender/freestyle/intern/geometry/HashGrid.cpp
+++ b/source/blender/freestyle/intern/geometry/HashGrid.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/geometry/HashGrid.cpp
* \ingroup freestyle
* \brief Class to define a cell grid surrounding the bounding box of the scene
- * \author Stephane Grabli
- * \date 30/07/2002
*/
#include "HashGrid.h"
diff --git a/source/blender/freestyle/intern/geometry/HashGrid.h b/source/blender/freestyle/intern/geometry/HashGrid.h
index 54ad8973763..1195504ee2f 100644
--- a/source/blender/freestyle/intern/geometry/HashGrid.h
+++ b/source/blender/freestyle/intern/geometry/HashGrid.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/geometry/HashGrid.h
* \ingroup freestyle
* \brief Class to define a cell grid surrounding the bounding box of the scene
- * \author Stephane Grabli
- * \date 30/07/2002
*/
#if 0
diff --git a/source/blender/freestyle/intern/geometry/Noise.cpp b/source/blender/freestyle/intern/geometry/Noise.cpp
index fe42d38b283..d71df60db07 100644
--- a/source/blender/freestyle/intern/geometry/Noise.cpp
+++ b/source/blender/freestyle/intern/geometry/Noise.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/geometry/Noise.cpp
* \ingroup freestyle
* \brief Class to define Perlin noise
- * \author Emmanuel Turquin
- * \date 12/01/2004
*/
#include <math.h>
diff --git a/source/blender/freestyle/intern/geometry/Noise.h b/source/blender/freestyle/intern/geometry/Noise.h
index 9949c9d8b03..742ef672e7e 100644
--- a/source/blender/freestyle/intern/geometry/Noise.h
+++ b/source/blender/freestyle/intern/geometry/Noise.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/geometry/Noise.h
* \ingroup freestyle
* \brief Class to define Perlin noise
- * \author Emmanuel Turquin
- * \date 12/01/2004
*/
#include "Geom.h"
diff --git a/source/blender/freestyle/intern/geometry/Polygon.h b/source/blender/freestyle/intern/geometry/Polygon.h
index b742e5e3c96..95a2075b071 100644
--- a/source/blender/freestyle/intern/geometry/Polygon.h
+++ b/source/blender/freestyle/intern/geometry/Polygon.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/geometry/Polygon.h
* \ingroup freestyle
* \brief Class to define a polygon
- * \author Stephane Grabli
- * \date 30/07/2002
*/
#include <vector>
diff --git a/source/blender/freestyle/intern/geometry/SweepLine.h b/source/blender/freestyle/intern/geometry/SweepLine.h
index d8fdc7c3db6..b1a7ea50241 100644
--- a/source/blender/freestyle/intern/geometry/SweepLine.h
+++ b/source/blender/freestyle/intern/geometry/SweepLine.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/geometry/SweepLine.h
* \ingroup freestyle
* \brief Class to define a Sweep Line
- * \author Stephane Grabli
- * \date 29/08/2002
*/
#include <list>
diff --git a/source/blender/freestyle/intern/geometry/VecMat.h b/source/blender/freestyle/intern/geometry/VecMat.h
index 28f77173a10..55b63336eb6 100644
--- a/source/blender/freestyle/intern/geometry/VecMat.h
+++ b/source/blender/freestyle/intern/geometry/VecMat.h
@@ -20,10 +20,6 @@
/** \file blender/freestyle/intern/geometry/VecMat.h
* \ingroup freestyle
* \brief Vectors and Matrices definition and manipulation
- * \author Sylvain Paris
- * \author Emmanuel Turquin
- * \author Stephane Grabli
- * \date 12/06/2003
*/
#include <iostream>
diff --git a/source/blender/freestyle/intern/geometry/matrix_util.cpp b/source/blender/freestyle/intern/geometry/matrix_util.cpp
index 049dc4d5f95..3fc7a00d7c7 100644
--- a/source/blender/freestyle/intern/geometry/matrix_util.cpp
+++ b/source/blender/freestyle/intern/geometry/matrix_util.cpp
@@ -27,7 +27,6 @@
/** \file blender/freestyle/intern/geometry/matrix_util.cpp
* \ingroup freestyle
- * \author Bruno Levy
*/
#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 ef7f55ffe7d..5447824be33 100644
--- a/source/blender/freestyle/intern/geometry/matrix_util.h
+++ b/source/blender/freestyle/intern/geometry/matrix_util.h
@@ -30,7 +30,6 @@
/** \file blender/freestyle/intern/geometry/matrix_util.h
* \ingroup freestyle
- * \author Bruno Levy
*/
#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 d16389296e7..8a7e1b80ecf 100644
--- a/source/blender/freestyle/intern/geometry/normal_cycle.cpp
+++ b/source/blender/freestyle/intern/geometry/normal_cycle.cpp
@@ -27,7 +27,6 @@
/** \file blender/freestyle/intern/geometry/normal_cycle.cpp
* \ingroup freestyle
- * \author Bruno Levy
*/
#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 07a4a1e70b1..f59d01f33eb 100644
--- a/source/blender/freestyle/intern/geometry/normal_cycle.h
+++ b/source/blender/freestyle/intern/geometry/normal_cycle.h
@@ -30,7 +30,6 @@
/** \file blender/freestyle/intern/geometry/normal_cycle.h
* \ingroup freestyle
- * \author Bruno Levy
*/
#include "Geom.h"