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.h2
-rw-r--r--source/blender/freestyle/intern/scene_graph/FrsMaterial.h2
-rw-r--r--source/blender/freestyle/intern/scene_graph/IndexedFaceSet.cpp2
-rw-r--r--source/blender/freestyle/intern/scene_graph/IndexedFaceSet.h2
-rw-r--r--source/blender/freestyle/intern/scene_graph/LineRep.cpp2
-rw-r--r--source/blender/freestyle/intern/scene_graph/LineRep.h2
-rw-r--r--source/blender/freestyle/intern/scene_graph/Node.h2
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeCamera.cpp2
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeCamera.h2
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.cpp2
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h2
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeGroup.cpp2
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeGroup.h2
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeLight.cpp2
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeLight.h2
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeShape.cpp2
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeShape.h2
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeTransform.cpp2
-rw-r--r--source/blender/freestyle/intern/scene_graph/NodeTransform.h2
-rw-r--r--source/blender/freestyle/intern/scene_graph/OrientedLineRep.cpp2
-rw-r--r--source/blender/freestyle/intern/scene_graph/OrientedLineRep.h2
-rw-r--r--source/blender/freestyle/intern/scene_graph/Rep.cpp2
-rw-r--r--source/blender/freestyle/intern/scene_graph/Rep.h2
-rw-r--r--source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.cpp3
-rw-r--r--source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h3
-rw-r--r--source/blender/freestyle/intern/scene_graph/SceneVisitor.cpp2
-rw-r--r--source/blender/freestyle/intern/scene_graph/SceneVisitor.h2
-rw-r--r--source/blender/freestyle/intern/scene_graph/TriangleRep.cpp2
-rw-r--r--source/blender/freestyle/intern/scene_graph/TriangleRep.h2
-rw-r--r--source/blender/freestyle/intern/scene_graph/VertexRep.cpp2
-rw-r--r--source/blender/freestyle/intern/scene_graph/VertexRep.h2
31 files changed, 0 insertions, 64 deletions
diff --git a/source/blender/freestyle/intern/scene_graph/DrawingStyle.h b/source/blender/freestyle/intern/scene_graph/DrawingStyle.h
index 0a4f0543341..0f658689ca6 100644
--- a/source/blender/freestyle/intern/scene_graph/DrawingStyle.h
+++ b/source/blender/freestyle/intern/scene_graph/DrawingStyle.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/scene_graph/DrawingStyle.h
* \ingroup freestyle
* \brief Class to define the drawing style of a node
- * \author Stephane Grabli
- * \date 10/10/2002
*/
#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 e5ef491aedd..dbfafe32578 100644
--- a/source/blender/freestyle/intern/scene_graph/FrsMaterial.h
+++ b/source/blender/freestyle/intern/scene_graph/FrsMaterial.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/scene_graph/FrsMaterial.h
* \ingroup freestyle
* \brief Class used to handle materials.
- * \author Stephane Grabli
- * \date 10/10/2002
*/
#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 4c59c1cb66f..e825c933a19 100644
--- a/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.cpp
+++ b/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/scene_graph/IndexedFaceSet.cpp
* \ingroup freestyle
* \brief A Set of indexed faces to represent a surfacic object
- * \author Stephane Grabli
- * \date 22/01/2002
*/
#include "IndexedFaceSet.h"
diff --git a/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.h b/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.h
index 2482de2a6c7..5415262f357 100644
--- a/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.h
+++ b/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/scene_graph/IndexedFaceSet.h
* \ingroup freestyle
* \brief A Set of indexed faces to represent a surfacic object
- * \author Stephane Grabli
- * \date 22/01/2002
*/
#include <memory.h>
diff --git a/source/blender/freestyle/intern/scene_graph/LineRep.cpp b/source/blender/freestyle/intern/scene_graph/LineRep.cpp
index 7bdbc57ceaf..b253ecfb6fe 100644
--- a/source/blender/freestyle/intern/scene_graph/LineRep.cpp
+++ b/source/blender/freestyle/intern/scene_graph/LineRep.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/scene_graph/LineRep.cpp
* \ingroup freestyle
* \brief Class to define the representation of 3D Line.
- * \author Stephane Grabli
- * \date 26/03/2002
*/
#include "LineRep.h"
diff --git a/source/blender/freestyle/intern/scene_graph/LineRep.h b/source/blender/freestyle/intern/scene_graph/LineRep.h
index a9b1c5ff6ea..aea082ccdc7 100644
--- a/source/blender/freestyle/intern/scene_graph/LineRep.h
+++ b/source/blender/freestyle/intern/scene_graph/LineRep.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/scene_graph/LineRep.h
* \ingroup freestyle
* \brief Class to define the representation of 3D Line.
- * \author Stephane Grabli
- * \date 26/03/2002
*/
#include <list>
diff --git a/source/blender/freestyle/intern/scene_graph/Node.h b/source/blender/freestyle/intern/scene_graph/Node.h
index 5c826628eca..3ac38891fa0 100644
--- a/source/blender/freestyle/intern/scene_graph/Node.h
+++ b/source/blender/freestyle/intern/scene_graph/Node.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/scene_graph/Node.h
* \ingroup freestyle
* \brief Abstract class for scene graph nodes. Inherits from BaseObject which defines the addRef release mechanism.
- * \author Stephane Grabli
- * \date 24/01/2002
*/
#include "SceneVisitor.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeCamera.cpp b/source/blender/freestyle/intern/scene_graph/NodeCamera.cpp
index 2c96ca25324..372e06d4668 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeCamera.cpp
+++ b/source/blender/freestyle/intern/scene_graph/NodeCamera.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/scene_graph/NodeCamera.cpp
* \ingroup freestyle
* \brief Class to represent a light node
- * \author Stephane Grabli
- * \date 25/01/2002
*/
#include <math.h>
diff --git a/source/blender/freestyle/intern/scene_graph/NodeCamera.h b/source/blender/freestyle/intern/scene_graph/NodeCamera.h
index 6c6989098ce..69e5e0b049b 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeCamera.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeCamera.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/scene_graph/NodeCamera.h
* \ingroup freestyle
* \brief Class to represent a light node
- * \author Stephane Grabli
- * \date 25/01/2002
*/
#include "Node.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.cpp b/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.cpp
index 0658343c967..cfcba3798d6 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.cpp
+++ b/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/scene_graph/NodeDrawingStyle.cpp
* \ingroup freestyle
* \brief Class to define a Drawing Style to be applied to the underlying children. Inherits from NodeGroup.
- * \author Stephane Grabli
- * \date 06/02/2002
*/
#include "NodeDrawingStyle.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h b/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h
index 57a21981ea0..3697ecaded5 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/scene_graph/NodeDrawingStyle.h
* \ingroup freestyle
* \brief Class to define a Drawing Style to be applied to the underlying children. Inherits from NodeGroup.
- * \author Stephane Grabli
- * \date 06/02/2002
*/
#include "DrawingStyle.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeGroup.cpp b/source/blender/freestyle/intern/scene_graph/NodeGroup.cpp
index 9788c7831fb..f6aed3a2502 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeGroup.cpp
+++ b/source/blender/freestyle/intern/scene_graph/NodeGroup.cpp
@@ -18,8 +18,6 @@
* \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.
- * \author Stephane Grabli
- * \date 24/01/2002
*/
#include "NodeGroup.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeGroup.h b/source/blender/freestyle/intern/scene_graph/NodeGroup.h
index 1882bfcbd96..d3fa004856f 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeGroup.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeGroup.h
@@ -21,8 +21,6 @@
* \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.
- * \author Stephane Grabli
- * \date 24/01/2002
*/
#include <vector>
diff --git a/source/blender/freestyle/intern/scene_graph/NodeLight.cpp b/source/blender/freestyle/intern/scene_graph/NodeLight.cpp
index 383da33d99b..939a99beb3a 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeLight.cpp
+++ b/source/blender/freestyle/intern/scene_graph/NodeLight.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/scene_graph/NodeLight.cpp
* \ingroup freestyle
* \brief Class to represent a light node
- * \author Stephane Grabli
- * \date 25/01/2002
*/
#include "NodeLight.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeLight.h b/source/blender/freestyle/intern/scene_graph/NodeLight.h
index e03041e72c0..85ca2b1a2b8 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeLight.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeLight.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/scene_graph/NodeLight.h
* \ingroup freestyle
* \brief Class to represent a light node
- * \author Stephane Grabli
- * \date 25/01/2002
*/
#include "Node.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeShape.cpp b/source/blender/freestyle/intern/scene_graph/NodeShape.cpp
index 2c55e041c1a..e7ea8dc16fd 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeShape.cpp
+++ b/source/blender/freestyle/intern/scene_graph/NodeShape.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/scene_graph/NodeShape.cpp
* \ingroup freestyle
* \brief Class to build a shape node. It contains a Rep, which is the shape geometry
- * \author Stephane Grabli
- * \date 25/01/2002
*/
#include "NodeShape.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeShape.h b/source/blender/freestyle/intern/scene_graph/NodeShape.h
index 646ebc92546..b1f1cf8d3ef 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeShape.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeShape.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/scene_graph/NodeShape.h
* \ingroup freestyle
* \brief Class to build a shape node. It contains a Rep, which is the shape geometry
- * \author Stephane Grabli
- * \date 25/01/2002
*/
#include <vector>
diff --git a/source/blender/freestyle/intern/scene_graph/NodeTransform.cpp b/source/blender/freestyle/intern/scene_graph/NodeTransform.cpp
index 6c64f9e8ff3..d5739dea821 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeTransform.cpp
+++ b/source/blender/freestyle/intern/scene_graph/NodeTransform.cpp
@@ -18,8 +18,6 @@
* \ingroup freestyle
* \brief Class to represent a transform node. A Transform node contains one or several children,
* \brief all affected by the transformation.
- * \author Stephane Grabli
- * \date 06/02/2002
*/
#include "NodeTransform.h"
diff --git a/source/blender/freestyle/intern/scene_graph/NodeTransform.h b/source/blender/freestyle/intern/scene_graph/NodeTransform.h
index 6bbb8ae45d7..2746c897bb0 100644
--- a/source/blender/freestyle/intern/scene_graph/NodeTransform.h
+++ b/source/blender/freestyle/intern/scene_graph/NodeTransform.h
@@ -21,8 +21,6 @@
* \ingroup freestyle
* \brief Class to represent a transform node. A Transform node contains one or several children,
* \brief all affected by the transformation.
- * \author Stephane Grabli
- * \date 06/02/2002
*/
#include "NodeGroup.h"
diff --git a/source/blender/freestyle/intern/scene_graph/OrientedLineRep.cpp b/source/blender/freestyle/intern/scene_graph/OrientedLineRep.cpp
index 31b8f73038f..ab1176aee01 100644
--- a/source/blender/freestyle/intern/scene_graph/OrientedLineRep.cpp
+++ b/source/blender/freestyle/intern/scene_graph/OrientedLineRep.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/scene_graph/OrientedLineRep.cpp
* \ingroup freestyle
* \brief Class to display an oriented line representation.
- * \author Stephane Grabli
- * \date 24/10/2002
*/
#include "OrientedLineRep.h"
diff --git a/source/blender/freestyle/intern/scene_graph/OrientedLineRep.h b/source/blender/freestyle/intern/scene_graph/OrientedLineRep.h
index 64a4daccb8b..473ef8798fd 100644
--- a/source/blender/freestyle/intern/scene_graph/OrientedLineRep.h
+++ b/source/blender/freestyle/intern/scene_graph/OrientedLineRep.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/scene_graph/OrientedLineRep.h
* \ingroup freestyle
* \brief Class to display an oriented line representation.
- * \author Stephane Grabli
- * \date 24/10/2002
*/
#include "LineRep.h"
diff --git a/source/blender/freestyle/intern/scene_graph/Rep.cpp b/source/blender/freestyle/intern/scene_graph/Rep.cpp
index 67c8d7b7267..1b4408fc761 100644
--- a/source/blender/freestyle/intern/scene_graph/Rep.cpp
+++ b/source/blender/freestyle/intern/scene_graph/Rep.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/scene_graph/Rep.cpp
* \ingroup freestyle
* \brief Base class for all shapes. Inherits from BasicObjects for references counter management (addRef, release).
- * \author Stephane Grabli
- * \date 25/01/2002
*/
#include "Rep.h"
diff --git a/source/blender/freestyle/intern/scene_graph/Rep.h b/source/blender/freestyle/intern/scene_graph/Rep.h
index f68426c13b8..3936eaceaa2 100644
--- a/source/blender/freestyle/intern/scene_graph/Rep.h
+++ b/source/blender/freestyle/intern/scene_graph/Rep.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/scene_graph/Rep.h
* \ingroup freestyle
* \brief Base class for all shapes. Inherits from BasicObjects for references counter management (addRef, release).
- * \author Stephane Grabli
- * \date 25/01/2002
*/
#include <string>
diff --git a/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.cpp b/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.cpp
index 4c12defd862..96e2d28d13a 100644
--- a/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.cpp
+++ b/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.cpp
@@ -17,9 +17,6 @@
/** \file blender/freestyle/intern/scene_graph/ScenePrettyPrinter.cpp
* \ingroup freestyle
* \brief Class to display textual information about a scene graph.
- * \author Stephane Grabli
- * \author Emmanuel Turquin
- * \date 26/04/2003
*/
#include <iomanip>
diff --git a/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h b/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h
index f07aea0b3e8..ef72f2de9dd 100644
--- a/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h
+++ b/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h
@@ -20,9 +20,6 @@
/** \file blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h
* \ingroup freestyle
* \brief Class to display textual information about a scene graph.
- * \author Stephane Grabli
- * \author Emmanuel Turquin
- * \date 26/04/2003
*/
#include <fstream>
diff --git a/source/blender/freestyle/intern/scene_graph/SceneVisitor.cpp b/source/blender/freestyle/intern/scene_graph/SceneVisitor.cpp
index 5afaadad4a9..a77dfb1c88e 100644
--- a/source/blender/freestyle/intern/scene_graph/SceneVisitor.cpp
+++ b/source/blender/freestyle/intern/scene_graph/SceneVisitor.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/scene_graph/SceneVisitor.cpp
* \ingroup freestyle
* \brief Class to visit (without doing anything) a scene graph structure
- * \author Emmanuel Turquin
- * \date 26/04/2003
*/
#include "SceneVisitor.h"
diff --git a/source/blender/freestyle/intern/scene_graph/SceneVisitor.h b/source/blender/freestyle/intern/scene_graph/SceneVisitor.h
index 0d2a4a893c8..fe70e463e31 100644
--- a/source/blender/freestyle/intern/scene_graph/SceneVisitor.h
+++ b/source/blender/freestyle/intern/scene_graph/SceneVisitor.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/scene_graph/SceneVisitor.h
* \ingroup freestyle
* \brief Class to visit (without doing anything) a scene graph structure
- * \author Emmanuel Turquin
- * \date 26/04/2003
*/
#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 31a0d0c1f76..9ced6691432 100644
--- a/source/blender/freestyle/intern/scene_graph/TriangleRep.cpp
+++ b/source/blender/freestyle/intern/scene_graph/TriangleRep.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/scene_graph/TriangleRep.cpp
* \ingroup freestyle
* \brief Class to define the represenation of a triangle
- * \author Stephane Grabli
- * \date 16/12/2002
*/
#include "TriangleRep.h"
diff --git a/source/blender/freestyle/intern/scene_graph/TriangleRep.h b/source/blender/freestyle/intern/scene_graph/TriangleRep.h
index b52ec267f65..5aaaf2e2bf8 100644
--- a/source/blender/freestyle/intern/scene_graph/TriangleRep.h
+++ b/source/blender/freestyle/intern/scene_graph/TriangleRep.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/scene_graph/TriangleRep.h
* \ingroup freestyle
* \brief Class to define the represenation of a triangle
- * \author Stephane Grabli
- * \date 16/12/2002
*/
//! 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 23cb0fd7edd..b4f06c708bf 100644
--- a/source/blender/freestyle/intern/scene_graph/VertexRep.cpp
+++ b/source/blender/freestyle/intern/scene_graph/VertexRep.cpp
@@ -17,8 +17,6 @@
/** \file blender/freestyle/intern/scene_graph/VertexRep.cpp
* \ingroup freestyle
* \brief Class to define the representation of a vertex for displaying purpose.
- * \author Stephane Grabli
- * \date 03/04/2002
*/
#include "VertexRep.h"
diff --git a/source/blender/freestyle/intern/scene_graph/VertexRep.h b/source/blender/freestyle/intern/scene_graph/VertexRep.h
index 7c4eba04491..66eedd2c301 100644
--- a/source/blender/freestyle/intern/scene_graph/VertexRep.h
+++ b/source/blender/freestyle/intern/scene_graph/VertexRep.h
@@ -20,8 +20,6 @@
/** \file blender/freestyle/intern/scene_graph/VertexRep.h
* \ingroup freestyle
* \brief Class to define the representation of a vertex for displaying purpose.
- * \author Stephane Grabli
- * \date 03/04/2002
*/
#include "Rep.h"