Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/mball_tessellate.c
| Show First 20 Lines • Show All 1,399 Lines • ▼ Show 20 Lines | void BKE_mball_polygonize(Depsgraph *depsgraph, Scene *scene, Object *ob, ListBase *dispbase) | ||||
| } | } | ||||
| else if (process.thresh < 0.1f) { | else if (process.thresh < 0.1f) { | ||||
| process.converge_res = 4; | process.converge_res = 4; | ||||
| } | } | ||||
| else { | else { | ||||
| process.converge_res = 2; | process.converge_res = 2; | ||||
| } | } | ||||
| if (is_render && (mb->flag == MB_UPDATE_NEVER)) { | if (!is_render && (mb->flag == MB_UPDATE_NEVER)) { | ||||
| return; | return; | ||||
| } | } | ||||
| if ((G.moving & (G_TRANSFORM_OBJ | G_TRANSFORM_EDIT)) && mb->flag == MB_UPDATE_FAST) { | if ((G.moving & (G_TRANSFORM_OBJ | G_TRANSFORM_EDIT)) && mb->flag == MB_UPDATE_FAST) { | ||||
| return; | return; | ||||
| } | } | ||||
| if (is_render) { | if (is_render) { | ||||
| process.size = mb->rendersize; | process.size = mb->rendersize; | ||||
| ▲ Show 20 Lines • Show All 48 Lines • Show Last 20 Lines | |||||