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-04-30 12:24:44 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-30 12:24:44 +0400
commit60c9addf79fdd68ceda48e451260a74f403f9e15 (patch)
tree1c90761d07c2012efbd19fe1be7e19b68ae8bd99 /source/blender/modifiers/intern
parent238af29b39f7a059c5bfd4124d8976cf34534a78 (diff)
- improve select grouped prefix/suffix from recent patch
- added select similar direction (Y axis)
Diffstat (limited to 'source/blender/modifiers/intern')
-rw-r--r--source/blender/modifiers/intern/MOD_explode.c1
-rw-r--r--source/blender/modifiers/intern/MOD_warp.c6
2 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/modifiers/intern/MOD_explode.c b/source/blender/modifiers/intern/MOD_explode.c
index af1969061fe..14acf6a0cbd 100644
--- a/source/blender/modifiers/intern/MOD_explode.c
+++ b/source/blender/modifiers/intern/MOD_explode.c
@@ -35,6 +35,7 @@
#include "DNA_meshdata_types.h"
#include "DNA_scene_types.h"
+#include "DNA_object_types.h"
#include "BLI_kdtree.h"
#include "BLI_rand.h"
diff --git a/source/blender/modifiers/intern/MOD_warp.c b/source/blender/modifiers/intern/MOD_warp.c
index 926a674462c..38a93091700 100644
--- a/source/blender/modifiers/intern/MOD_warp.c
+++ b/source/blender/modifiers/intern/MOD_warp.c
@@ -29,6 +29,9 @@
#include "MEM_guardedalloc.h"
+#include "DNA_object_types.h"
+#include "DNA_meshdata_types.h"
+
#include "BLI_math.h"
#include "BLI_utildefines.h"
#include "BLI_string.h"
@@ -39,9 +42,6 @@
#include "BKE_texture.h"
#include "BKE_colortools.h"
-#include "DNA_object_types.h"
-#include "DNA_meshdata_types.h"
-
#include "depsgraph_private.h"
#include "RE_shader_ext.h"