feat: 提交

This commit is contained in:
2025-08-11 09:40:22 +08:00
parent be7f3fffb4
commit 37e2e7bee8
2 changed files with 4 additions and 5 deletions

View File

@@ -1,8 +1,7 @@
/**
* @package @mes-cutpoint/libs
* @author LX
* @package @mes-modelprocesspoints/libs
* @description 工作流处理器类库,在这个文件中使用导出时,不要在路径中使用'@',否则模块无法加载
*/
// CutOrder
export * from "./processors/cutPoint/CutPoint";
export * from "./processors/modelProcessPoints/modelProcessPoints";

View File

@@ -165,11 +165,11 @@ export class ModelProcessPointsProc extends ProcessorBase<ModelProcessPointsInpu
break;
case 'turnLeft':
model = this.change_turnLeft(model, _length, _width)
model = this.change_turnLeft(model, _length)
break;
case 'turnRight':
model = this.change_turnRight(model, _length, _width)
model = this.change_turnRight(model, _length)
break;
default: