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:
authorLukas Tönne <lukas.toenne@gmail.com>2014-10-22 20:11:12 +0400
committerLukas Tönne <lukas.toenne@gmail.com>2015-01-20 11:30:04 +0300
commitf03fc27bf78f035617d97d536149bceeb9ab1e68 (patch)
tree0eec447d6a046cc1d2366a8555f26e517bc02fd3 /source/blender/editors/physics
parentc01ed4875bfb4645e3e58d62d0f1dc19814f394f (diff)
Removed unused line.
Diffstat (limited to 'source/blender/editors/physics')
-rw-r--r--source/blender/editors/physics/particle_edit.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c
index cbed5a3b2ee..b739f1572c1 100644
--- a/source/blender/editors/physics/particle_edit.c
+++ b/source/blender/editors/physics/particle_edit.c
@@ -4132,7 +4132,6 @@ static void shape_cut(PEData *data, int pa_index)
BLI_bvhtree_ray_cast(data->shape_bvh.tree, key->co, dir, 0.0f, &hit, data->shape_bvh.raycast_callback, &data->shape_bvh);
if (hit.index >= 0) {
if (hit.dist < len) {
-// cut_time = interpf((key+1)->time, key->time, hit.dist / len);
cut_time = (hit.dist / len + (float)k) / (float)totkeys;
cut = true;
break;