- in drillcncjob Tcl command added the usage of RTree path optimization and made it the default choice

This commit is contained in:
Marius Stanciu
2022-01-30 16:54:20 +02:00
committed by Marius
parent 71441a80e5
commit 16af642409
3 changed files with 7 additions and 4 deletions

View File

@@ -270,7 +270,8 @@ class TclCommandDrillcncjob(TclCommandSignaled):
"in format (x, y) - no spaces allowed. But always two comma separated values.")
return "fail"
opt_type = args["opt_type"] if "opt_type" in args and args["opt_type"] else 'B'
# Path optimization
opt_type = args["opt_type"] if "opt_type" in args and args["opt_type"] else 'R'
# ##########################################################################################
# ################# Set parameters #########################################################