From dad3de89dcfc809078a73b607033e4afba7a4cc0 Mon Sep 17 00:00:00 2001 From: Germano Cavalcante Date: Tue, 7 Jul 2020 11:27:09 -0300 Subject: [PATCH] Fix: remove accidental code `v1` and `v2` are already set. --- source/blender/editors/mesh/editmesh_knife.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/blender/editors/mesh/editmesh_knife.c b/source/blender/editors/mesh/editmesh_knife.c index ae407b7b84b..e9223af12ff 100644 --- a/source/blender/editors/mesh/editmesh_knife.c +++ b/source/blender/editors/mesh/editmesh_knife.c @@ -1625,8 +1625,6 @@ static void knife_find_line_hits(KnifeTool_OpData *kcd) float plane[4]; { float v1_v2[3], v1_v3[3]; - copy_v3_v3(v1, kcd->prev.cage); - copy_v3_v3(v2, kcd->curr.cage); sub_v3_v3v3(v1_v2, v2, v1); sub_v3_v3v3(v1_v3, v3, v1); cross_v3_v3v3(plane, v1_v2, v1_v3);