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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFilip Sykala <filip.sykala@prusa3d.cz>2021-07-21 09:34:43 +0300
committerFilip Sykala <filip.sykala@prusa3d.cz>2021-07-21 09:34:43 +0300
commit6bcc576b5fbcc869f2db39af32f276366d71a0b4 (patch)
treef7f9cd1ab693d540563d24ddba151946307bee41 /tests
parent87a6c8cb732aa54a405208d826e4a5a0d7263390 (diff)
truncate model name
Diffstat (limited to 'tests')
-rw-r--r--tests/libslic3r/test_indexed_triangle_set.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/libslic3r/test_indexed_triangle_set.cpp b/tests/libslic3r/test_indexed_triangle_set.cpp
index 195c32003..b640d8410 100644
--- a/tests/libslic3r/test_indexed_triangle_set.cpp
+++ b/tests/libslic3r/test_indexed_triangle_set.cpp
@@ -233,8 +233,7 @@ TEST_CASE("Reduce one edge by Quadric Edge Collapse", "[its]")
#include "test_utils.hpp"
TEST_CASE("Simplify mesh by Quadric edge collapse to 5%", "[its]")
{
- TriangleMesh mesh = load_model("frog_legs.obj");
- //TriangleMesh mesh; load_obj("C:/Users/filip/Documents/models/scarecrow_torso.obj", &mesh);
+ TriangleMesh mesh = load_model("frog_legs.obj");
double original_volume = its_volume(mesh.its);
uint32_t wanted_count = mesh.its.indices.size() * 0.05;
REQUIRE_FALSE(mesh.empty());