mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-27 12:52:07 +00:00
ENH: add nozzle type ntTungstenCarbide
jira: [STUDIO-11597] Change-Id: Ibec41549042d253aeb85ba81e93e7c26a4a56ed2 (cherry picked from commit 1352cff31427eadd2c85ce4c9602ab3379a5ae9e)
This commit is contained in:
@@ -314,6 +314,7 @@ enum NozzleType {
|
||||
ntUndefine = 0,
|
||||
ntHardenedSteel,
|
||||
ntStainlessSteel,
|
||||
ntTungstenCarbide,
|
||||
ntBrass,
|
||||
ntCount
|
||||
};
|
||||
@@ -322,6 +323,7 @@ static std::unordered_map<NozzleType, std::string>NozzleTypeEumnToStr = {
|
||||
{NozzleType::ntUndefine, "undefine"},
|
||||
{NozzleType::ntHardenedSteel, "hardened_steel"},
|
||||
{NozzleType::ntStainlessSteel, "stainless_steel"},
|
||||
{NozzleType::ntTungstenCarbide, "tungsten_carbide"},
|
||||
{NozzleType::ntBrass, "brass"}
|
||||
};
|
||||
|
||||
@@ -329,6 +331,7 @@ static std::unordered_map<std::string, NozzleType>NozzleTypeStrToEumn = {
|
||||
{"undefine", NozzleType::ntUndefine},
|
||||
{"hardened_steel", NozzleType::ntHardenedSteel},
|
||||
{"stainless_steel", NozzleType::ntStainlessSteel},
|
||||
{"tungsten_carbide", NozzleType::ntTungstenCarbide},
|
||||
{"brass", NozzleType::ntBrass}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user