新增"机台加工项" ProcessItem类型,移除samples代码

This commit is contained in:
2025-07-30 17:27:14 +08:00
parent d8c062d13e
commit fbb9de77f9
37 changed files with 28 additions and 40098 deletions

27
src/models/processItem.ts Normal file
View File

@@ -0,0 +1,27 @@
export interface IPoint { x: number, y: number; }
/**
* 加工数据
*/
export interface IProcessingItem {
/**
* 加工点数组
*/
pts: IPoint[];
/**
* 凸度数组
*/
buls: number[];
/**
* 加工深度
*/
depth: number;
/**
* 半径
*/
radius: number;
/**
* 刀ID
*/
knifeId?: number;
}