Code Cleanup: use strict flags for screw modifier, reduce sign conversion

This commit is contained in:
2013-11-21 10:35:48 +11:00
parent 7cdfe18385
commit ac021a42ad
2 changed files with 63 additions and 57 deletions

View File

@@ -822,12 +822,13 @@ typedef struct ScrewModifierData {
ModifierData modifier;
struct Object *ob_axis;
int steps;
int render_steps;
int iter;
unsigned int steps;
unsigned int render_steps;
unsigned int iter;
float screw_ofs;
float angle;
short axis;
char axis;
char pad;
short flag;
} ScrewModifierData;