Add import of polygon from dxf
This commit is contained in:
@@ -5,7 +5,7 @@ using System.Windows.Media.Imaging;
|
||||
|
||||
namespace StructureHelperLogics.NdmCalculations.Analyses
|
||||
{
|
||||
public class ExportFrameWorkElementLogic : IExportResultLogic
|
||||
public class ExportFrameWorkElementLogic : IExportToFileLogic
|
||||
{
|
||||
private FrameworkElement element;
|
||||
private double scaleFactor;
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Text;
|
||||
|
||||
namespace StructureHelperLogics.NdmCalculations.Analyses
|
||||
{
|
||||
public class ExportGeometryResultToCSVLogic : IExportResultLogic
|
||||
public class ExportGeometryResultToCSVLogic : IExportToFileLogic
|
||||
{
|
||||
const string separator = ";";
|
||||
StringBuilder output;
|
||||
|
||||
@@ -3,7 +3,7 @@ using System.Windows.Media.Imaging;
|
||||
|
||||
namespace StructureHelperLogics.NdmCalculations.Analyses
|
||||
{
|
||||
public class ExportResultToBitmapLogic : IExportResultLogic
|
||||
public class ExportResultToBitmapLogic : IExportToFileLogic
|
||||
{
|
||||
private BitmapImage bitmapImage;
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ using System.Text;
|
||||
|
||||
namespace StructureHelperLogics.NdmCalculations.Analyses
|
||||
{
|
||||
public abstract class ExportToCSVLogicBase : IExportResultLogic
|
||||
public abstract class ExportToCSVLogicBase : IExportToFileLogic
|
||||
{
|
||||
public string separator => ";";
|
||||
public StringBuilder output { get; } = new();
|
||||
|
||||
Reference in New Issue
Block a user