Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_screw.c
| Context not available. | |||||
| * \ingroup modifiers | * \ingroup modifiers | ||||
| */ | */ | ||||
| /* Screw modifier: revolves the edges about an axis */ | /* Screw modifier: revolves the edges about an axis */ | ||||
| #include <limits.h> | #include <limits.h> | ||||
| #include "CLG_log.h" | |||||
| #include "DNA_mesh_types.h" | #include "DNA_mesh_types.h" | ||||
| #include "DNA_meshdata_types.h" | #include "DNA_meshdata_types.h" | ||||
| #include "DNA_object_types.h" | #include "DNA_object_types.h" | ||||
| Context not available. | |||||
| #define SV_INVALID ((UINT_MAX) - 1) | #define SV_INVALID ((UINT_MAX) - 1) | ||||
| #define SV_IS_VALID(v) ((v) < SV_INVALID) | #define SV_IS_VALID(v) ((v) < SV_INVALID) | ||||
| static CLG_LogRef LOG = { "mod.screw" }; | |||||
| static void screwvert_iter_init(ScrewVertIter *iter, ScrewVertConnect *array, unsigned int v_init, unsigned int dir) | static void screwvert_iter_init(ScrewVertIter *iter, ScrewVertConnect *array, unsigned int v_init, unsigned int dir) | ||||
| { | { | ||||
| iter->v_array = array; | iter->v_array = array; | ||||
| Context not available. | |||||