Move converters to OpenNest.Converters namespace

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 13:04:46 -05:00
parent 67a66e10fd
commit e4df9cacd8
10 changed files with 14 additions and 6 deletions

View File

@@ -1,5 +1,6 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using OpenNest.Converters;
using OpenNest.Geometry; using OpenNest.Geometry;
using OpenNest.Math; using OpenNest.Math;

View File

@@ -1,8 +1,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using OpenNest;
using OpenNest.CNC; using OpenNest.CNC;
using OpenNest.Geometry; using OpenNest.Geometry;
namespace OpenNest namespace OpenNest.Converters
{ {
public static class ConvertGeometry public static class ConvertGeometry
{ {

View File

@@ -1,7 +1,7 @@
using OpenNest.CNC; using OpenNest.CNC;
using OpenNest.Geometry; using OpenNest.Geometry;
namespace OpenNest namespace OpenNest.Converters
{ {
public static class ConvertMode public static class ConvertMode
{ {

View File

@@ -1,10 +1,11 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using OpenNest;
using OpenNest.CNC; using OpenNest.CNC;
using OpenNest.Geometry; using OpenNest.Geometry;
using OpenNest.Math; using OpenNest.Math;
namespace OpenNest namespace OpenNest.Converters
{ {
public static class ConvertProgram public static class ConvertProgram
{ {

View File

@@ -1,6 +1,7 @@
using System.Drawing; using System.Drawing;
using System.Linq; using System.Linq;
using OpenNest.CNC; using OpenNest.CNC;
using OpenNest.Converters;
using OpenNest.Geometry; using OpenNest.Geometry;
namespace OpenNest namespace OpenNest

View File

@@ -48,7 +48,7 @@
<Compile Include="Drawing.cs" /> <Compile Include="Drawing.cs" />
<Compile Include="Collections\DrawingCollection.cs" /> <Compile Include="Collections\DrawingCollection.cs" />
<Compile Include="Math\EvenOdd.cs" /> <Compile Include="Math\EvenOdd.cs" />
<Compile Include="ConvertGeometry.cs" /> <Compile Include="Converters\ConvertGeometry.cs" />
<Compile Include="CNC\ArcMove.cs" /> <Compile Include="CNC\ArcMove.cs" />
<Compile Include="CNC\Comment.cs" /> <Compile Include="CNC\Comment.cs" />
<Compile Include="CNC\ICode.cs" /> <Compile Include="CNC\ICode.cs" />
@@ -85,13 +85,13 @@
<Compile Include="Sequence.cs" /> <Compile Include="Sequence.cs" />
<Compile Include="SpecialLayers.cs" /> <Compile Include="SpecialLayers.cs" />
<Compile Include="Material.cs" /> <Compile Include="Material.cs" />
<Compile Include="ConvertMode.cs" /> <Compile Include="Converters\ConvertMode.cs" />
<Compile Include="Nest.cs" /> <Compile Include="Nest.cs" />
<Compile Include="Part.cs" /> <Compile Include="Part.cs" />
<Compile Include="Collections\ObservableList.cs" /> <Compile Include="Collections\ObservableList.cs" />
<Compile Include="Plate.cs" /> <Compile Include="Plate.cs" />
<Compile Include="CNC\Program.cs" /> <Compile Include="CNC\Program.cs" />
<Compile Include="ConvertProgram.cs" /> <Compile Include="Converters\ConvertProgram.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="DwgQty.cs" /> <Compile Include="DwgQty.cs" />
<Compile Include="Geometry\Spacing.cs" /> <Compile Include="Geometry\Spacing.cs" />

View File

@@ -1,5 +1,6 @@
using System.Collections.Generic; using System.Collections.Generic;
using OpenNest.CNC; using OpenNest.CNC;
using OpenNest.Converters;
using OpenNest.Geometry; using OpenNest.Geometry;
namespace OpenNest namespace OpenNest

View File

@@ -1,6 +1,7 @@
using System; using System;
using System.Linq; using System.Linq;
using OpenNest.CNC; using OpenNest.CNC;
using OpenNest.Converters;
using OpenNest.Geometry; using OpenNest.Geometry;
namespace OpenNest namespace OpenNest

View File

@@ -4,6 +4,7 @@ using System.Drawing;
using System.Linq; using System.Linq;
using System.Windows.Forms; using System.Windows.Forms;
using OpenNest.Controls; using OpenNest.Controls;
using OpenNest.Converters;
using OpenNest.Forms; using OpenNest.Forms;
using OpenNest.Geometry; using OpenNest.Geometry;

View File

@@ -6,6 +6,7 @@ using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
using OpenNest.CNC; using OpenNest.CNC;
using OpenNest.Converters;
using OpenNest.Geometry; using OpenNest.Geometry;
using OpenNest.IO; using OpenNest.IO;
using OpenNest.Properties; using OpenNest.Properties;