Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_smooth.c
| Show First 20 Lines • Show All 247 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| static void panelRegister(ARegionType *region_type) | static void panelRegister(ARegionType *region_type) | ||||
| { | { | ||||
| modifier_panel_register(region_type, eModifierType_Smooth, panel_draw); | modifier_panel_register(region_type, eModifierType_Smooth, panel_draw); | ||||
| } | } | ||||
| ModifierTypeInfo modifierType_Smooth = { | ModifierTypeInfo modifierType_Smooth = { | ||||
| /* name */ "Smooth", | /* name */ N_("Smooth"), | ||||
| /* structName */ "SmoothModifierData", | /* structName */ "SmoothModifierData", | ||||
| /* structSize */ sizeof(SmoothModifierData), | /* structSize */ sizeof(SmoothModifierData), | ||||
| /* srna */ &RNA_SmoothModifier, | /* srna */ &RNA_SmoothModifier, | ||||
| /* type */ eModifierTypeType_OnlyDeform, | /* type */ eModifierTypeType_OnlyDeform, | ||||
| /* flags */ eModifierTypeFlag_AcceptsMesh | eModifierTypeFlag_AcceptsCVs | | /* flags */ eModifierTypeFlag_AcceptsMesh | eModifierTypeFlag_AcceptsCVs | | ||||
| eModifierTypeFlag_SupportsEditmode, | eModifierTypeFlag_SupportsEditmode, | ||||
| /* icon */ ICON_MOD_SMOOTH, | /* icon */ ICON_MOD_SMOOTH, | ||||
| Show All 23 Lines | |||||