3dPrinting :

- aggiunto coasting e wipe
- aggiunto sfasamento tra start point dello stesso slice
- aggiornato file parametri.
This commit is contained in:
SaraP
2022-05-25 16:42:28 +02:00
parent 6e4d3113d7
commit 4ca1b37210
5 changed files with 190 additions and 74 deletions
+11 -5
View File
@@ -20,6 +20,7 @@ TOOLPATH_GRP = "ToolPath"
LAYER_SRF = "LayerSurf"
SHELL_CRV = "Shell"
INFILL_CRV = "Infill"
RETRACTION_CRV = "Retraction"
FRAME_PART = "FramePart"
MIN_LEN = 1e-3
@@ -36,12 +37,12 @@ KEY_SHELLS_NBR = "StrandCount"
KEY_STRAND = "StrandW"
KEY_OFFSET_SLICE ="Offset"
KEY_START_POINT = "StartPoint"
KEY_SP_OFFSET_ON_SLICE = "StartPointOffsetOnSlice"
KEY_PRINT_ORDER = "StrandOrder"
KEY_PRINT_DIRECTION = "Direction"
KEY_TYPE = "Type"
KEY_LINK_TYPE = "LinkType"
KEY_LINK_PARAM = "LinkParam"
KEY_LINK_DIST="LinkDist"
KEY_LINK_ZUP = "LinkZup"
KEY_FLOOR_NBR = "FloorCount"
KEY_SPEED = "Speed"
@@ -63,12 +64,15 @@ KEY_LEAD_OUT_TYPE = "LeadOut"
KEY_LEAD_OUT_TANG_DIST= "LeadOutTangDist"
KEY_LEAD_OUT_ORTHO_DIST= "LeadOutOrthoDist"
KEY_OFFSET_LEAD_POINT = "OffsetLeadPoint"
KEY_COASTING_LEN = "CoastingLen"
KEY_WIPE_LEN = "WipeLen"
TYPE = {
OUTER_SHELL = 1,
INNER_SHELL = 2,
INFILL = 3,
LINK = 4,
RETRACTION = 5,
}
PRINT_ORDER = {
@@ -82,13 +86,15 @@ PRINT_DIRECTION = {
}
LINK_TYPE = {
LINEAR = 1,
BIARC = 2,
NONE = 1,
LINEAR = 2,
BIARC = 3,
}
LEAD_TYPE = {
LINEAR = 1,
ARC = 2,
NONE = 1,
LINEAR = 2,
ARC = 3,
}