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-07-02 22:24:47 +0300
committerFormerLurker <hochgebe@gmail.com>2021-07-02 22:24:47 +0300
commit18d1e992d3773485d2b7b05ffaec1ea00b16c777 (patch)
tree42983ee7c351d32d38afb437642ed9f9e861a024 /PyArcWelder
parent65768d59a9ed785ddb740fc6df67d2912d2a5bdf (diff)
Add support for variable line widths.
Diffstat (limited to 'PyArcWelder')
-rw-r--r--PyArcWelder/py_arc_welder.cpp24
1 files changed, 13 insertions, 11 deletions
diff --git a/PyArcWelder/py_arc_welder.cpp b/PyArcWelder/py_arc_welder.cpp
index 36588f2..f811e6d 100644
--- a/PyArcWelder/py_arc_welder.cpp
+++ b/PyArcWelder/py_arc_welder.cpp
@@ -47,28 +47,30 @@ PyObject* py_arc_welder::build_py_progress(const arc_welder_progress& progress,
progress.points_compressed, //6
"arcs_created",
progress.arcs_created, //7
+ "arcs_aborted_by_flowrate",
+ progress.arcs_aborted_by_flow_rate, //8
"num_firmware_compensations",
- progress.num_firmware_compensations, //8
+ progress.num_firmware_compensations, //9
"source_file_position",
- progress.source_file_position, //9
+ progress.source_file_position, //10
"source_file_size",
- progress.source_file_size, //10
+ progress.source_file_size, //11
"target_file_size",
- progress.target_file_size, //11
+ progress.target_file_size, //12
"compression_ratio",
- progress.compression_ratio, //12
+ progress.compression_ratio, //13
"compression_percent",
- progress.compression_percent, //13
+ progress.compression_percent, //14
"source_file_total_length",
- progress.segment_statistics.total_length_source, //14
+ progress.segment_statistics.total_length_source, //15
"target_file_total_length",
- progress.segment_statistics.total_length_target, //15
+ progress.segment_statistics.total_length_target, //16
"source_file_total_count",
- progress.segment_statistics.total_count_source, //16
+ progress.segment_statistics.total_count_source, //17
"target_file_total_count",
- progress.segment_statistics.total_count_target, //17
+ progress.segment_statistics.total_count_target, //18
"total_count_reduction_percent",
- total_count_reduction_percent //18
+ total_count_reduction_percent //19
);