3dPrinting :

- gestione regioni con numero diverso di passate.
This commit is contained in:
SaraP
2022-08-12 12:27:41 +02:00
parent ffd86bd009
commit ff84fd21c3
9 changed files with 784 additions and 271 deletions
+4 -1
View File
@@ -31,9 +31,12 @@ local function CalcType( nEntId, nOldType)
if not nType or nType == TYPE.LINK or nType == TYPE.COASTING or nType == TYPE.WIPE then
nType = nOldType
end
if nType == TYPE.RIB then
if nType == TYPE.RIB or nType == TYPE.AUX_SOLID then
nType = TYPE.INFILL
end
if nType == TYPE.EXTRA_SHELL then
nType = TYPE.INNER_SHELL
end
return nType
end