Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_weightvgproximity.c
| Context not available. | |||||
| #include "BLI_rand.h" | #include "BLI_rand.h" | ||||
| #include "BLI_task.h" | #include "BLI_task.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_modifier_types.h" | #include "DNA_modifier_types.h" | ||||
| Context not available. | |||||
| **************************************/ | **************************************/ | ||||
| /* Util macro. */ | /* Util macro. */ | ||||
| #define OUT_OF_MEMORY() ((void)printf("WeightVGProximity: Out of memory.\n")) | #define OUT_OF_MEMORY() CLOG_ERROR(&LOG, "Out of memory.") | ||||
| static CLG_LogRef LOG = { "mod.weightvgproximity" }; | |||||
| typedef struct Vert2GeomData { | typedef struct Vert2GeomData { | ||||
| /* Read-only data */ | /* Read-only data */ | ||||
| Context not available. | |||||