From 3872b939e440421dec0fc2cee8fad40fba6f1c0c Mon Sep 17 00:00:00 2001 From: bubnikv Date: Tue, 11 Jun 2019 17:15:07 +0200 Subject: [PATCH] Fix of previous commit --- src/admesh/stl.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/admesh/stl.h b/src/admesh/stl.h index c419c567bd..40bced2f4f 100644 --- a/src/admesh/stl.h +++ b/src/admesh/stl.h @@ -216,7 +216,6 @@ template extern void its_transform(indexed_triangle_set &its, T *trafo3x4) { for (stl_vertex &v_dst : its.vertices) { - stl_vertex &v_dst = face.vertex[i_vertex]; stl_vertex v_src = v_dst; v_dst(0) = T(trafo3x4[0] * v_src(0) + trafo3x4[1] * v_src(1) + trafo3x4[2] * v_src(2) + trafo3x4[3]); v_dst(1) = T(trafo3x4[4] * v_src(0) + trafo3x4[5] * v_src(1) + trafo3x4[6] * v_src(2) + trafo3x4[7]);