Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/Operations/OperationLayerRemove.cs')
-rw-r--r--UVtools.Core/Operations/OperationLayerRemove.cs18
1 files changed, 13 insertions, 5 deletions
diff --git a/UVtools.Core/Operations/OperationLayerRemove.cs b/UVtools.Core/Operations/OperationLayerRemove.cs
index 5fa1907..117712a 100644
--- a/UVtools.Core/Operations/OperationLayerRemove.cs
+++ b/UVtools.Core/Operations/OperationLayerRemove.cs
@@ -47,18 +47,26 @@ namespace UVtools.Core.Operations
#endregion
+ #region Constructor
+
+ public OperationLayerRemove() { }
+
+ public OperationLayerRemove(FileFormat slicerFile) : base(slicerFile) { }
+
+ #endregion
+
#region Methods
- public override bool Execute(FileFormat slicerFile, OperationProgress progress = null)
+ protected override bool ExecuteInternally(OperationProgress progress)
{
- progress ??= new OperationProgress(false);
+ progress.CanCancel = false;
var layersRemove = new List<uint>();
for (uint layerIndex = LayerIndexStart; layerIndex <= LayerIndexEnd; layerIndex++)
{
layersRemove.Add(layerIndex);
}
- return RemoveLayers(slicerFile, layersRemove, progress);
+ return RemoveLayers(SlicerFile, layersRemove, progress);
}
public static bool RemoveLayers(FileFormat slicerFile, List<uint> layersRemove, OperationProgress progress = null)
@@ -70,7 +78,7 @@ namespace UVtools.Core.Operations
progress.Reset("removed layers", (uint)layersRemove.Count);
var oldLayers = slicerFile.LayerManager.Layers;
- float layerHeight = slicerFile.LayerHeight;
+ var layerHeight = slicerFile.LayerHeight;
var layers = new Layer[oldLayers.Length - layersRemove.Count];
@@ -92,7 +100,7 @@ namespace UVtools.Core.Operations
}
else
{
- posZ = (float)Math.Round(layers[newLayerIndex - 1].PositionZ + layerHeight, 2);
+ posZ = layers[newLayerIndex - 1].PositionZ + layerHeight;
}
}