Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_correctivesmooth.c
| Show First 20 Lines • Show All 829 Lines • ▼ Show 20 Lines | static void blendRead(BlendDataReader *reader, ModifierData *md) | ||||
| } | } | ||||
| /* runtime only */ | /* runtime only */ | ||||
| csmd->delta_cache.deltas = NULL; | csmd->delta_cache.deltas = NULL; | ||||
| csmd->delta_cache.totverts = 0; | csmd->delta_cache.totverts = 0; | ||||
| } | } | ||||
| ModifierTypeInfo modifierType_CorrectiveSmooth = { | ModifierTypeInfo modifierType_CorrectiveSmooth = { | ||||
| /* name */ "CorrectiveSmooth", | /* name */ N_("CorrectiveSmooth"), | ||||
| /* structName */ "CorrectiveSmoothModifierData", | /* structName */ "CorrectiveSmoothModifierData", | ||||
| /* structSize */ sizeof(CorrectiveSmoothModifierData), | /* structSize */ sizeof(CorrectiveSmoothModifierData), | ||||
| /* srna */ &RNA_CorrectiveSmoothModifier, | /* srna */ &RNA_CorrectiveSmoothModifier, | ||||
| /* type */ eModifierTypeType_OnlyDeform, | /* type */ eModifierTypeType_OnlyDeform, | ||||
| /* flags */ eModifierTypeFlag_AcceptsMesh | eModifierTypeFlag_SupportsEditmode, | /* flags */ eModifierTypeFlag_AcceptsMesh | eModifierTypeFlag_SupportsEditmode, | ||||
| /* icon */ ICON_MOD_SMOOTH, | /* icon */ ICON_MOD_SMOOTH, | ||||
| /* copyData */ copyData, | /* copyData */ copyData, | ||||
| Show All 22 Lines | |||||