ENH: change param name

Jira: none

change filament category to filament adhesiveness category

Signed-off-by: qing.zhang <qing.zhang@bambulab.com>
Change-Id: I267d71b2f968becf4e8f434daafdf1a70c36a823
(cherry picked from commit faec4160d560d965978447eaa8675a5fbee4090c)
This commit is contained in:
qing.zhang
2025-02-11 14:31:27 +08:00
committed by Noisyfox
parent cef38a26ca
commit 01c2a31ac9
29 changed files with 48 additions and 48 deletions

View File

@@ -322,7 +322,7 @@ public:
struct WipeTowerBlock
{
int block_id{0};
int filament_category{0};
int filament_adhesiveness_category{0};
std::vector<float> layer_depths;
std::vector<bool> solid_infill;
float depth{0};
@@ -344,8 +344,8 @@ public:
int m_last_block_id;
// help function
WipeTowerBlock& get_block_by_category(int filament_category);
void add_depth_to_block(int filament_id, int filament_category, float depth, bool is_nozzle_change = false);
WipeTowerBlock& get_block_by_category(int filament_adhesiveness_category);
void add_depth_to_block(int filament_id, int filament_adhesiveness_category, float depth, bool is_nozzle_change = false);
int get_filament_category(int filament_id);
bool is_in_same_extruder(int filament_id_1, int filament_id_2);
void reset_block_status();