新增"机台加工项" ProcessItem类型,移除samples代码
This commit is contained in:
27
src/models/processItem.ts
Normal file
27
src/models/processItem.ts
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user