Move converters to OpenNest.Converters namespace
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -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;
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
@@ -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
|
||||||
{
|
{
|
||||||
@@ -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
|
||||||
{
|
{
|
||||||
@@ -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
|
||||||
|
|||||||
@@ -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" />
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user