- Aggiunta gestione lead in/lead out

- Aggiunto offset per raccordi
This commit is contained in:
SaraP
2022-04-12 17:42:27 +02:00
parent 124eeecbab
commit a8711e92e7
3 changed files with 118 additions and 4 deletions
+13
View File
@@ -40,6 +40,7 @@ KEY_PRINT_DIRECTION = "Direction"
KEY_TYPE = "Type"
KEY_LINK_TYPE = "LinkType"
KEY_LINK_PARAM = "LinkParam"
KEY_LINK_DIST="LinkDist"
KEY_FLOOR_NBR = "FloorCount"
KEY_SPEED = "Speed"
KEY_FEED = "Feed"
@@ -53,6 +54,13 @@ KEY_G0_FEED = "G0Feed"
KEY_MATERIAL = "Material"
KEY_COEFF_X = "CoeffX"
KEY_COEFF_Y = "CoeffY"
KEY_LEAD_IN_TYPE = "LeadIn"
KEY_LEAD_IN_TANG_DIST = "LeadInTangDist"
KEY_LEAD_IN_ORTHO_DIST = "LeadInOrthoDist"
KEY_LEAD_OUT_TYPE = "LeadOut"
KEY_LEAD_OUT_TANG_DIST= "LeadOutTangDist"
KEY_LEAD_OUT_ORTHO_DIST= "LeadOutOrthoDist"
KEY_OFFSET_LEAD_POINT = "OffsetLeadPoint"
TYPE = {
OUTER_SHELL = 0,
@@ -78,6 +86,11 @@ LINK_TYPE = {
BIARC = 1,
}
LEAD_TYPE = {
LINEAR = 0,
ARC = 1,
}
---------------------------------------------------------------------