Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_remesh.c
| Show First 20 Lines • Show All 262 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| static void panelRegister(ARegionType *region_type) | static void panelRegister(ARegionType *region_type) | ||||
| { | { | ||||
| modifier_panel_register(region_type, eModifierType_Remesh, panel_draw); | modifier_panel_register(region_type, eModifierType_Remesh, panel_draw); | ||||
| } | } | ||||
| ModifierTypeInfo modifierType_Remesh = { | ModifierTypeInfo modifierType_Remesh = { | ||||
| /* name */ "Remesh", | /* name */ N_("Remesh"), | ||||
| /* structName */ "RemeshModifierData", | /* structName */ "RemeshModifierData", | ||||
| /* structSize */ sizeof(RemeshModifierData), | /* structSize */ sizeof(RemeshModifierData), | ||||
| /* srna */ &RNA_RemeshModifier, | /* srna */ &RNA_RemeshModifier, | ||||
| /* type */ eModifierTypeType_Nonconstructive, | /* type */ eModifierTypeType_Nonconstructive, | ||||
| /* flags */ eModifierTypeFlag_AcceptsMesh | eModifierTypeFlag_AcceptsCVs | | /* flags */ eModifierTypeFlag_AcceptsMesh | eModifierTypeFlag_AcceptsCVs | | ||||
| eModifierTypeFlag_SupportsEditmode, | eModifierTypeFlag_SupportsEditmode, | ||||
| /* icon */ ICON_MOD_REMESH, | /* icon */ ICON_MOD_REMESH, | ||||
| Show All 23 Lines | |||||