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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-04-17 07:45:22 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-04-17 09:37:10 +0400
commit3458bad12d4ba7c1184a44fcdabfef265335d30c (patch)
tree49118b32e20606571902e1ffca6aa20539af2dda
parent01a4a09f29974ff7c5c381f399aed143df716cc9 (diff)
Freestyle: removed unnecessary #include files and made minor code cleanup.
-rw-r--r--source/blender/freestyle/intern/geometry/GridHelpers.cpp2
-rw-r--r--source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.h1
-rw-r--r--source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DDouble.cpp2
-rw-r--r--source/blender/freestyle/intern/stroke/ChainingIterators.h3
-rw-r--r--source/blender/freestyle/intern/view_map/CulledOccluderSource.cpp2
-rw-r--r--source/blender/freestyle/intern/view_map/Functions1D.cpp2
-rw-r--r--source/blender/freestyle/intern/view_map/Interface0D.h6
-rw-r--r--source/blender/freestyle/intern/view_map/Interface1D.h3
-rw-r--r--source/blender/freestyle/intern/view_map/SteerableViewMap.cpp2
9 files changed, 8 insertions, 15 deletions
diff --git a/source/blender/freestyle/intern/geometry/GridHelpers.cpp b/source/blender/freestyle/intern/geometry/GridHelpers.cpp
index 2b809608edf..a0543e56a36 100644
--- a/source/blender/freestyle/intern/geometry/GridHelpers.cpp
+++ b/source/blender/freestyle/intern/geometry/GridHelpers.cpp
@@ -25,8 +25,6 @@
* \date 2010-12-21
*/
-#include <math.h>
-
#include "GridHelpers.h"
namespace Freestyle {
diff --git a/source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.h b/source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.h
index 3dea73cdd08..bb1207aa46b 100644
--- a/source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.h
+++ b/source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.h
@@ -25,7 +25,6 @@
#ifndef __FREESTYLE_PYTHON_ORIENTEDVIEWEDGEITERATOR_H__
#define __FREESTYLE_PYTHON_ORIENTEDVIEWEDGEITERATOR_H__
-#include "../../stroke/Stroke.h"
#include "../BPy_Iterator.h"
#include "../../view_map/ViewMapIterators.h"
diff --git a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DDouble.cpp b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DDouble.cpp
index be2be0a9c5c..06ba12145c0 100644
--- a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DDouble.cpp
+++ b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DDouble.cpp
@@ -38,8 +38,6 @@
#include "UnaryFunction0D_double/BPy_LocalAverageDepthF0D.h"
#include "UnaryFunction0D_double/BPy_ZDiscontinuityF0D.h"
-#include "../Director.h"
-
#ifdef __cplusplus
extern "C" {
#endif
diff --git a/source/blender/freestyle/intern/stroke/ChainingIterators.h b/source/blender/freestyle/intern/stroke/ChainingIterators.h
index 5a8d4b678b8..ff9203d3af6 100644
--- a/source/blender/freestyle/intern/stroke/ChainingIterators.h
+++ b/source/blender/freestyle/intern/stroke/ChainingIterators.h
@@ -32,8 +32,7 @@
#include "Predicates1D.h"
-
-#include "../system/Iterator.h" //soc
+#include "../system/Iterator.h"
#include "../view_map/ViewMap.h"
#include "../view_map/ViewMapIterators.h"
diff --git a/source/blender/freestyle/intern/view_map/CulledOccluderSource.cpp b/source/blender/freestyle/intern/view_map/CulledOccluderSource.cpp
index 2a1388c939b..d98a3238a25 100644
--- a/source/blender/freestyle/intern/view_map/CulledOccluderSource.cpp
+++ b/source/blender/freestyle/intern/view_map/CulledOccluderSource.cpp
@@ -27,8 +27,6 @@
#include "CulledOccluderSource.h"
-#include "FRS_freestyle.h"
-
#include "../geometry/GridHelpers.h"
#include "BKE_global.h"
diff --git a/source/blender/freestyle/intern/view_map/Functions1D.cpp b/source/blender/freestyle/intern/view_map/Functions1D.cpp
index c66d8b8bfe7..f29da6680bf 100644
--- a/source/blender/freestyle/intern/view_map/Functions1D.cpp
+++ b/source/blender/freestyle/intern/view_map/Functions1D.cpp
@@ -26,7 +26,7 @@
* \date 01/07/2003
*/
-# include "Functions1D.h"
+#include "Functions1D.h"
using namespace std;
diff --git a/source/blender/freestyle/intern/view_map/Interface0D.h b/source/blender/freestyle/intern/view_map/Interface0D.h
index 8f7137f412a..e59ed4c96c8 100644
--- a/source/blender/freestyle/intern/view_map/Interface0D.h
+++ b/source/blender/freestyle/intern/view_map/Interface0D.h
@@ -34,7 +34,7 @@
#include "../geometry/Geom.h"
#include "../system/Id.h"
-#include "../system/Iterator.h" //soc
+#include "../system/Iterator.h"
#include "../system/Precision.h"
#include "../winged_edge/Nature.h"
@@ -64,7 +64,9 @@ class Interface0D
public:
/*! Default constructor */
Interface0D() {}
- virtual ~Interface0D() {}; //soc
+
+ /*! Destructor */
+ virtual ~Interface0D() {};
/*! Returns the string "Interface0D". */
virtual string getExactTypeName() const
diff --git a/source/blender/freestyle/intern/view_map/Interface1D.h b/source/blender/freestyle/intern/view_map/Interface1D.h
index 95ace73af14..7afa61ff496 100644
--- a/source/blender/freestyle/intern/view_map/Interface1D.h
+++ b/source/blender/freestyle/intern/view_map/Interface1D.h
@@ -136,7 +136,8 @@ public:
_timeStamp = 0;
}
- virtual ~Interface1D() {}; //soc
+ /*! Destructor */
+ virtual ~Interface1D() {};
/*! Returns the string "Interface1D". */
virtual string getExactTypeName() const
diff --git a/source/blender/freestyle/intern/view_map/SteerableViewMap.cpp b/source/blender/freestyle/intern/view_map/SteerableViewMap.cpp
index a4cb2a4a4f9..fe6f3f1892d 100644
--- a/source/blender/freestyle/intern/view_map/SteerableViewMap.cpp
+++ b/source/blender/freestyle/intern/view_map/SteerableViewMap.cpp
@@ -25,8 +25,6 @@
* \date 01/07/2003
*/
-//soc #include <qimage.h>
-//soc #include <qstring.h>
#include <sstream>
#include "Silhouette.h"