Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_solidify_extrude.c
| Show First 20 Lines • Show All 177 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| /** \} */ | /** \} */ | ||||
| /* -------------------------------------------------------------------- */ | /* -------------------------------------------------------------------- */ | ||||
| /** \name Main Solidify Function | /** \name Main Solidify Function | ||||
| * \{ */ | * \{ */ | ||||
| Mesh *MOD_solidify_extrude_applyModifier(ModifierData *md, | Mesh *MOD_solidify_extrude_modifyMesh(ModifierData *md, const ModifierEvalContext *ctx, Mesh *mesh) | ||||
| const ModifierEvalContext *ctx, | |||||
| Mesh *mesh) | |||||
| { | { | ||||
| Mesh *result; | Mesh *result; | ||||
| const SolidifyModifierData *smd = (SolidifyModifierData *)md; | const SolidifyModifierData *smd = (SolidifyModifierData *)md; | ||||
| MVert *mv, *mvert, *orig_mvert; | MVert *mv, *mvert, *orig_mvert; | ||||
| MEdge *ed, *medge, *orig_medge; | MEdge *ed, *medge, *orig_medge; | ||||
| MLoop *ml, *mloop, *orig_mloop; | MLoop *ml, *mloop, *orig_mloop; | ||||
| MPoly *mp, *mpoly, *orig_mpoly; | MPoly *mp, *mpoly, *orig_mpoly; | ||||
| ▲ Show 20 Lines • Show All 909 Lines • Show Last 20 Lines | |||||