Files
wg_cpso/ToolPathParser/ToolPositionList.cs

25 lines
513 B
C#
Raw Permalink Normal View History

2026-03-25 18:20:24 +08:00
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);
}
}
}