feat: add DxfImporter.Import returning entities + CadDocument
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
12
OpenNest.IO/DxfImportResult.cs
Normal file
12
OpenNest.IO/DxfImportResult.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using ACadSharp;
|
||||
using OpenNest.Geometry;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace OpenNest.IO
|
||||
{
|
||||
public class DxfImportResult
|
||||
{
|
||||
public List<Entity> Entities { get; set; } = new();
|
||||
public CadDocument Document { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user