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:
Diffstat (limited to 'source/blender/modifiers/intern/MOD_screw.c')
-rw-r--r--source/blender/modifiers/intern/MOD_screw.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/source/blender/modifiers/intern/MOD_screw.c b/source/blender/modifiers/intern/MOD_screw.c
index 455451b3d6e..ce0667c4fbc 100644
--- a/source/blender/modifiers/intern/MOD_screw.c
+++ b/source/blender/modifiers/intern/MOD_screw.c
@@ -30,26 +30,18 @@
*
*/
-#include "stddef.h"
-#include "string.h"
-#include "math.h"
-#include "float.h"
-
-#include "BLI_math.h"
+/* Screw modifier: revolves the edges about an axis */
#include "DNA_meshdata_types.h"
+#include "BLI_math.h"
+
#include "BKE_cdderivedmesh.h"
#include "depsgraph_private.h"
-
#include "MOD_modifiertypes.h"
-
#include "MEM_guardedalloc.h"
-/* Screw modifier: revolves the edges about an axis
-*/
-
/* used for gathering edge connectivity */
typedef struct ScrewVertConnect {
float dist; /* distance from the center axis */