Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/transform/transform_conversions.c
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
| Show First 20 Lines • Show All 7,094 Lines • ▼ Show 20 Lines | if (t->flag & T_EDIT) { | ||||
| /* handle multires re-projection, done | /* handle multires re-projection, done | ||||
| * on transform completion since it's | * on transform completion since it's | ||||
| * really slow -joeedh */ | * really slow -joeedh */ | ||||
| projectEdgeSlideData(t, true); | projectEdgeSlideData(t, true); | ||||
| FOREACH_TRANS_DATA_CONTAINER (t, tc) { | FOREACH_TRANS_DATA_CONTAINER (t, tc) { | ||||
| EdgeSlideData *sld = tc->custom.mode.data; | EdgeSlideData *sld = tc->custom.mode.data; | ||||
| if (sld == NULL) { | |||||
| continue; | |||||
| } | |||||
| /* Free temporary faces to avoid auto-merging and deleting | /* Free temporary faces to avoid auto-merging and deleting | ||||
| * during cleanup - psy-fi. */ | * during cleanup - psy-fi. */ | ||||
| freeEdgeSlideTempFaces(sld); | freeEdgeSlideTempFaces(sld); | ||||
| } | } | ||||
| } | } | ||||
| else if (t->mode == TFM_VERT_SLIDE) { | else if (t->mode == TFM_VERT_SLIDE) { | ||||
| /* as above */ | /* as above */ | ||||
| projectVertSlideData(t, true); | projectVertSlideData(t, true); | ||||
| ▲ Show 20 Lines • Show All 2,590 Lines • Show Last 20 Lines | |||||