Files
wg_cpso/ToolPathParser/ToolPositionList.cs
2026-03-25 18:20:24 +08:00

25 lines
513 B
C#

using CaeKnowledge.Data;
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
/*
* 代码由西工大李许杰负责维护
*/
namespace ToolPathParser
{
public class ToolPositionList
{
public static List<ToolPosition> Process(string inputPath)
{
return ToolPathProcessor.ProcessToolPath(
inputPath,
totalPointsPerLayer: 50,
radialDepth: 1.0,
zOrigin: 0.0);
}
}
}