Update(blocks): python新增plot_cla图形块,多语言将在稳定后进行

This commit is contained in:
王立帮
2024-09-17 19:43:20 +08:00
parent b9c1be61a0
commit 07ce56952a
5 changed files with 682 additions and 77 deletions

View File

@@ -1560,4 +1560,15 @@ export const dataframe_aggregate_func = {
this.setInputsInline(true);
this.setTooltip('');
}
}
}
export const plot_cla = {
init: function () {
this.setColour(DATA_HUE);
this.appendDummyInput()
.appendField('清除已有图像');
this.setInputsInline(true);
this.setPreviousStatement(true);
this.setNextStatement(true);
}
};