3dPrinting :

- migliorata intersezione setti
- aggiunto ordine di realizzazione per tipologie setti.
This commit is contained in:
SaraP
2022-11-24 16:09:16 +01:00
parent 0a78833f61
commit 8622fc8919
3 changed files with 180 additions and 123 deletions
+10
View File
@@ -99,6 +99,7 @@ KEY_RIBS_INTERS = "RibsHaveIntersections"
KEY_SPLIT_ORDER = "SplitOrder"
KEY_SPLIT_RIB = "SplitRib"
KEY_RIBS_TWO_STRANDS = "RibsHaveAll2Strands"
KEY_RIBS_PRINT_ORDER = "RibsPrintOrder"
-- Regioni con diverso numero di passate
KEY_SHELL_NBR_DIFF = "ShellNbrDifference"
@@ -193,6 +194,15 @@ RIB_TYPE = {
UNBOUNDED = 3,
}
RIB_PRINT_ORDER = {
INT_EXT_UNBDD = 1,
INT_UNBDD_EXT = 2,
EXT_INT_UNBDD = 3,
EXT_UNBDD_INT = 4,
UNBDD_INT_EXT = 5,
UNBDD_EXT_INT = 6,
}
---------------------------------------------------------------------
TABLE = "Table"
PART = "Part"