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