3dPrinting :

- aggiunte tipologie per ribs ( interni, esterni, illimitati)
- migliorie per ordinamento ribs.
This commit is contained in:
SaraP
2022-10-26 16:12:25 +02:00
parent aa750ff933
commit 213e6ac6ed
5 changed files with 397 additions and 208 deletions
+8 -1
View File
@@ -38,7 +38,6 @@ SEC_DEFAULT = "Default"
KEY_PARAMS = "Params"
KEY_CALC_SOLIDS = "CalcSolids"
KEY_SPIRAL_VASE = "SpiralVase"
KEY_SLICING_45 = "Slicing45"
KEY_SLICING_TYPE = "SlicingType"
KEY_SLICING_DIR="SlicingDir"
KEY_SLICE_STEP = "StrandH"
@@ -82,6 +81,7 @@ KEY_WIPE_FEEDPU = "WipeFeedPu"
KEY_TOOL_DIAM = "ToolDiam"
-- Ribs
KEY_RIBS_TYPE = "RibsType"
KEY_RIBS_OVERLAP = "RibsOverlap"
KEY_RIBS_SHELLS_NBR = "RibsStrandCount"
KEY_RIBS_LINK = "RibsLink"
@@ -95,6 +95,7 @@ KEY_RIBS_LEAD_OUT_COASTING = "RibsLeadOutCoasting"
KEY_RIBS_LEAD_OUT_WIPE = "RibsLeadOutWipe"
KEY_RIBS_LEAD_OUT_WIPE_DIR = "RibsLeadOutWipeDir"
KEY_RIBS_INTERS = "RibsHaveIntersections"
KEY_SPLIT_ORDER = "SplitOrder"
KEY_SPLIT_RIB = "SplitRib"
KEY_RIBS_TWO_STRANDS = "RibsHaveAll2Strands"
@@ -181,6 +182,12 @@ INFILL_TYPE = {
ZIGZAG = 3,
}
RIB_TYPE = {
INTERNAL = 1,
EXTERNAL = 2,
UNBOUNDED = 3,
}
---------------------------------------------------------------------
TABLE = "Table"
PART = "Part"