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

github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFormerLurker <hochgebe@gmail.com>2021-11-13 22:37:28 +0300
committerFormerLurker <hochgebe@gmail.com>2021-11-13 22:37:28 +0300
commit4c193828056771381f7bfc6f04133bd1a45447ac (patch)
tree02cbbdbe89bfb4e7f886212fd70494912d4b0a00 /ArcWelderTest
parent32708379fe8fe91e4e21b6928d6384162abcd091 (diff)
Encode more points when moving to/from extruding/retracting/travel.
Diffstat (limited to 'ArcWelderTest')
-rw-r--r--ArcWelderTest/ArcWelderTest.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ArcWelderTest/ArcWelderTest.cpp b/ArcWelderTest/ArcWelderTest.cpp
index 31ca28f..2aaa8e4 100644
--- a/ArcWelderTest/ArcWelderTest.cpp
+++ b/ArcWelderTest/ArcWelderTest.cpp
@@ -306,7 +306,7 @@ static void TestAntiStutter(std::string filePath)
// BENCHY_L1_DIFFICULT
// SPIRAL_TEST
// SPIRAL_VASE_TEST_FUNNEL
- std::string source_path = TravelWipeTest;
+ std::string source_path = BENCHY_DIFFICULT;
std::string target_path = "C:\\Users\\Brad\\Documents\\3DPrinter\\AntiStutter\\test_output.gcode";
arc_welder_args args(source_path, target_path, p_logger);
args.callback = on_progress;
@@ -315,6 +315,7 @@ static void TestAntiStutter(std::string filePath)
args.allow_3d_arcs = true;
args.max_radius_mm = 9999;
args.resolution_mm = 0.05;
+ args.extrusion_rate_variance_percent = 1000;
arc_welder arc_welder_obj(args);
arc_welder_results results = arc_welder_obj.process();