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>2012-02-11 12:46:56 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-11 12:46:56 +0400
commitacd568d751dacd6ad1dbc6bd5a88fb52df783546 (patch)
treecbf07b24def425c3da53b8bdab488db9d6f17cca /source/blender/editors/mesh/knifetool.c
parent91390b712aa42fff2f5937816b010e157a4333b3 (diff)
include cleanup
Diffstat (limited to 'source/blender/editors/mesh/knifetool.c')
-rwxr-xr-xsource/blender/editors/mesh/knifetool.c37
1 files changed, 7 insertions, 30 deletions
diff --git a/source/blender/editors/mesh/knifetool.c b/source/blender/editors/mesh/knifetool.c
index 459215336ed..677c53e6625 100755
--- a/source/blender/editors/mesh/knifetool.c
+++ b/source/blender/editors/mesh/knifetool.c
@@ -24,66 +24,43 @@
* ***** END GPL LICENSE BLOCK *****
*/
-#include <float.h>
#define _USE_MATH_DEFINES
-#include <math.h>
-#include <string.h>
-#include <ctype.h>
-#include <stdio.h>
-#include "DNA_ID.h"
-#include "DNA_screen_types.h"
-#include "DNA_scene_types.h"
-#include "DNA_userdef_types.h"
-#include "DNA_object_types.h"
#include "MEM_guardedalloc.h"
-#include "PIL_time.h"
-#include "BLI_utildefines.h"
#include "BLI_blenlib.h"
-#include "BLI_dynstr.h" /* for WM_operator_pystring */
-#include "BLI_editVert.h"
#include "BLI_array.h"
-#include "BLI_ghash.h"
-#include "BLI_memarena.h"
-#include "BLI_mempool.h"
#include "BLI_math.h"
#include "BLI_rand.h"
-#include "BLI_kdopbvh.h"
#include "BLI_smallhash.h"
#include "BLI_scanfill.h"
#include "BKE_DerivedMesh.h"
-#include "BKE_blender.h"
#include "BKE_context.h"
#include "BKE_depsgraph.h"
-#include "BKE_scene.h"
-#include "BKE_mesh.h"
-#include "BKE_tessmesh.h"
-#include "BKE_depsgraph.h"
#include "BIF_gl.h"
#include "BIF_glutil.h" /* for paint cursor */
-#include "IMB_imbuf_types.h"
#include "ED_screen.h"
#include "ED_space_api.h"
#include "ED_view3d.h"
#include "ED_mesh.h"
-#include "RNA_access.h"
-#include "RNA_define.h"
-
-#include "UI_interface.h"
-
#include "WM_api.h"
#include "WM_types.h"
+#include "DNA_scene_types.h"
+#include "DNA_object_types.h"
+#include "DNA_mesh_types.h"
+#include "BKE_tessmesh.h"
+#include "BLI_editVert.h"
+#include "RNA_types.h"
+
#include "mesh_intern.h"
-#include "editbmesh_bvh.h"
/* this code here is kindof messy. . .I might need to eventually rework it - joeedh */