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>2010-04-13 02:33:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-04-13 02:33:43 +0400
commit4824e7eeeb82fcad72f222fe0d74c41c374b648e (patch)
tree1a6cf992caf36f9c8883107a9831304d9a793a6b /source/blender/modifiers/intern/MOD_uvproject.c
parent7814d42ec79601cd4bafc7a8dfe2596f892757c9 (diff)
modifier include cleanup, this might need fixes on other systems but hard to avoid.
also removed unused stuff from cmake modifier file
Diffstat (limited to 'source/blender/modifiers/intern/MOD_uvproject.c')
-rw-r--r--source/blender/modifiers/intern/MOD_uvproject.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/source/blender/modifiers/intern/MOD_uvproject.c b/source/blender/modifiers/intern/MOD_uvproject.c
index b47ab92f74b..2e4194cd1dd 100644
--- a/source/blender/modifiers/intern/MOD_uvproject.c
+++ b/source/blender/modifiers/intern/MOD_uvproject.c
@@ -30,29 +30,21 @@
*
*/
-#include "stddef.h"
-#include "string.h"
-#include "math.h"
-#include "float.h"
+/* UV Project modifier: Generates UVs projected from an object */
-#include "DNA_camera_types.h"
#include "DNA_meshdata_types.h"
+#include "DNA_camera_types.h"
#include "BLI_math.h"
#include "BLI_uvproject.h"
#include "BKE_DerivedMesh.h"
-#include "depsgraph_private.h"
#include "MOD_modifiertypes.h"
#include "MOD_util.h"
#include "MEM_guardedalloc.h"
-
-
-/* UVProject */
-/* UV Project modifier: Generates UVs projected from an object
-*/
+#include "depsgraph_private.h"
static void initData(ModifierData *md)
{