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 Cavalcante <germano.costa@ig.com.br>2020-07-07 17:27:09 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2020-07-07 17:27:23 +0300
commitdad3de89dcfc809078a73b607033e4afba7a4cc0 (patch)
tree6f64067b02a30f09e6920d5ce172de6c81032a66 /source/blender/editors/mesh
parentd352902758f41d69948f57a55934d7456f6ebb38 (diff)
Fix: remove accidental code
`v1` and `v2` are already set.
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh_knife.c2
1 files changed, 0 insertions, 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);