Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_laplaciansmooth.c
| Show First 20 Lines • Show All 602 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| static void panelRegister(ARegionType *region_type) | static void panelRegister(ARegionType *region_type) | ||||
| { | { | ||||
| modifier_panel_register(region_type, eModifierType_LaplacianSmooth, panel_draw); | modifier_panel_register(region_type, eModifierType_LaplacianSmooth, panel_draw); | ||||
| } | } | ||||
| ModifierTypeInfo modifierType_LaplacianSmooth = { | ModifierTypeInfo modifierType_LaplacianSmooth = { | ||||
| /* name */ "LaplacianSmooth", | /* name */ N_("LaplacianSmooth"), | ||||
| /* structName */ "LaplacianSmoothModifierData", | /* structName */ "LaplacianSmoothModifierData", | ||||
| /* structSize */ sizeof(LaplacianSmoothModifierData), | /* structSize */ sizeof(LaplacianSmoothModifierData), | ||||
| /* srna */ &RNA_LaplacianSmoothModifier, | /* srna */ &RNA_LaplacianSmoothModifier, | ||||
| /* 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 */ BKE_modifier_copydata_generic, | /* copyData */ BKE_modifier_copydata_generic, | ||||
| Show All 22 Lines | |||||