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>2013-04-01 15:27:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-01 15:27:47 +0400
commit5d234f0a0bafddb82d4904abb90fa069d71db2cd (patch)
tree7762286fcc09338851d8b856f20ca5832e5a0117 /source/blender/blenlib/intern/graph.c
parent547342bf737c724641a75b86a16a97ddef2610da (diff)
code cleanup: includes
Diffstat (limited to 'source/blender/blenlib/intern/graph.c')
-rw-r--r--source/blender/blenlib/intern/graph.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/source/blender/blenlib/intern/graph.c b/source/blender/blenlib/intern/graph.c
index a93bbd97b51..cedec7d07b6 100644
--- a/source/blender/blenlib/intern/graph.c
+++ b/source/blender/blenlib/intern/graph.c
@@ -25,17 +25,15 @@
* \ingroup bli
*/
-
-#include <float.h>
+#include <float.h>
#include <math.h>
#include "MEM_guardedalloc.h"
+#include "BLI_utildefines.h"
+#include "BLI_listbase.h"
#include "BLI_graph.h"
-#include "BLI_blenlib.h"
#include "BLI_math.h"
-#include "BLI_utildefines.h"
-
static void testRadialSymmetry(BGraph *graph, BNode *root_node, RadialArc *ring, int total, float axis[3], float limit, int group);