Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/transform/transform_convert.c
| Show First 20 Lines • Show All 992 Lines • ▼ Show 20 Lines | |||||
| else if (convert_type == TC_MESH_VERTS) { | else if (convert_type == TC_MESH_VERTS) { | ||||
| if (t->flag & T_PROP_CONNECTED) { | if (t->flag & T_PROP_CONNECTED) { | ||||
| /* Already calculated by editmesh_set_connectivity_distance. */ | /* Already calculated by editmesh_set_connectivity_distance. */ | ||||
| } | } | ||||
| else { | else { | ||||
| set_prop_dist(t, false); | set_prop_dist(t, false); | ||||
| } | } | ||||
| } | } | ||||
| else if (convert_type == TC_MESH_UV && t->flag & T_PROP_CONNECTED) { | |||||
| /* Already calculated by uv_set_connectivity_distance. */ | |||||
| } | |||||
| else if (convert_type == TC_CURVE_VERTS && t->obedit_type == OB_CURVE) { | else if (convert_type == TC_CURVE_VERTS && t->obedit_type == OB_CURVE) { | ||||
| set_prop_dist(t, false); | set_prop_dist(t, false); | ||||
| } | } | ||||
| else { | else { | ||||
| set_prop_dist(t, true); | set_prop_dist(t, true); | ||||
| } | } | ||||
| sort_trans_data_dist(t); | sort_trans_data_dist(t); | ||||
| ▲ Show 20 Lines • Show All 285 Lines • Show Last 20 Lines | |||||