Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_solidify.c
| Context not available. | |||||
| mp->flag = mpoly[fidx].flag; | mp->flag = mpoly[fidx].flag; | ||||
| /* notice we use 'mp->totloop' which is later overwritten, | /* notice we use 'mp->totloop' which is later overwritten, | ||||
| * we could lookup the original face but theres no point since this is a copy | * we could lookup the original face but there's no point since this is a copy | ||||
| * and will have the same value, just take care when changing order of assignment */ | * and will have the same value, just take care when changing order of assignment */ | ||||
| k1 = mpoly[fidx].loopstart + (((edge_order[eidx] - 1) + mp->totloop) % mp->totloop); /* prev loop */ | k1 = mpoly[fidx].loopstart + (((edge_order[eidx] - 1) + mp->totloop) % mp->totloop); /* prev loop */ | ||||
| k2 = mpoly[fidx].loopstart + (edge_order[eidx]); | k2 = mpoly[fidx].loopstart + (edge_order[eidx]); | ||||
| Context not available. | |||||