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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2019-06-11 18:15:07 +0300
committerbubnikv <bubnikv@gmail.com>2019-06-11 18:15:07 +0300
commit3872b939e440421dec0fc2cee8fad40fba6f1c0c (patch)
treee48be97192380c907d505c212fb73858355bec44 /src/admesh
parent0bb8ee149e8702fb644a70ab1f3924ff8e6f3d71 (diff)
Fix of previous commit
Diffstat (limited to 'src/admesh')
-rw-r--r--src/admesh/stl.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/admesh/stl.h b/src/admesh/stl.h
index c419c567b..40bced2f4 100644
--- a/src/admesh/stl.h
+++ b/src/admesh/stl.h
@@ -216,7 +216,6 @@ template<typename T>
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]);