Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGermano <germano.costa@ig.com.br>2018-05-03 21:54:26 +0300
committerGermano <germano.costa@ig.com.br>2018-05-03 21:54:26 +0300
commit32c620b0d68925fe21487df826f1b20a56d5b8a0 (patch)
tree833c6f5e97373fd6a1584076a4f9906e21b90577 /source/blender/editors/physics
parent5760c6b25cc4e014868ff67f2c357ea38e40eafa (diff)
parent7915cc7ddbc221385e824f737ff7e48e5f52a1dd (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/editors/physics')
-rw-r--r--source/blender/editors/physics/particle_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c
index a509a909111..5c476df3dd3 100644
--- a/source/blender/editors/physics/particle_edit.c
+++ b/source/blender/editors/physics/particle_edit.c
@@ -410,7 +410,7 @@ static bool PE_create_shape_tree(PEData *data, Object *shapeob)
return false;
}
- return (bvhtree_from_mesh_looptri(&data->shape_bvh, dm, 0.0f, 4, 8) != NULL);
+ return (bvhtree_from_mesh_get(&data->shape_bvh, dm, BVHTREE_FROM_LOOPTRI, 4) != NULL);
}
static void PE_free_shape_tree(PEData *data)