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:
Diffstat (limited to 'PyArcWelder/py_arc_welder_extension.h')
-rw-r--r--PyArcWelder/py_arc_welder_extension.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/PyArcWelder/py_arc_welder_extension.h b/PyArcWelder/py_arc_welder_extension.h
index 9b979fe..2212748 100644
--- a/PyArcWelder/py_arc_welder_extension.h
+++ b/PyArcWelder/py_arc_welder_extension.h
@@ -53,6 +53,7 @@ struct py_gcode_arc_args {
mm_per_arc_segment = DEFAULT_MM_PER_ARC_SEGMENT;
g90_g91_influences_extruder = DEFAULT_G90_G91_INFLUENCES_EXTREUDER;
allow_3d_arcs = DEFAULT_ALLOW_3D_ARCS;
+ allow_travel_arcs = DEFAULT_ALLOW_TRAVEL_ARCS;
log_level = 0;
}
py_gcode_arc_args(
@@ -66,6 +67,7 @@ struct py_gcode_arc_args {
double mm_per_arc_segment_,
bool g90_g91_influences_extruder_,
bool allow_3d_arcs_,
+ bool allow_travel_arcs_,
bool allow_dynamic_precision_,
unsigned char default_xyz_precision_,
unsigned char default_e_precision_,
@@ -81,6 +83,7 @@ struct py_gcode_arc_args {
min_arc_segments = min_arc_segments_;
mm_per_arc_segment = mm_per_arc_segment_;
allow_3d_arcs = allow_3d_arcs_;
+ allow_travel_arcs = allow_travel_arcs_;
allow_dynamic_precision = allow_dynamic_precision_;
default_xyz_precision = default_xyz_precision_;
default_e_precision = default_e_precision_;
@@ -94,6 +97,7 @@ struct py_gcode_arc_args {
double resolution_mm;
double path_tolerance_percent;
bool allow_3d_arcs;
+ bool allow_travel_arcs;
bool allow_dynamic_precision;
unsigned char default_xyz_precision;
unsigned char default_e_precision;