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:
authorTiago Conceição <Tiago_caza@hotmail.com>2020-09-13 03:18:43 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2020-09-13 03:18:43 +0300
commit9c421cc144b66d4c7e73e09f5f44e27358bc7eac (patch)
tree2eed390ea1ea1e52fe5b145e8c33632fcb90fbd1 /UVtools.Core/FileFormats/ImageFile.cs
parent12fc6dae7d1b3b471141ab2e070b460e7b1ad3e3 (diff)
More abstraction
* (Add) Global print properties on formats for more internal abstraction * (Improvement) Print properties performance internal code with abstraction
Diffstat (limited to 'UVtools.Core/FileFormats/ImageFile.cs')
-rw-r--r--UVtools.Core/FileFormats/ImageFile.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/UVtools.Core/FileFormats/ImageFile.cs b/UVtools.Core/FileFormats/ImageFile.cs
index 1102e78..3238cb7 100644
--- a/UVtools.Core/FileFormats/ImageFile.cs
+++ b/UVtools.Core/FileFormats/ImageFile.cs
@@ -39,12 +39,6 @@ namespace UVtools.Core.FileFormats
public override byte AntiAliasing { get; } = 1;
public override float LayerHeight { get; set; } = 0;
- public override ushort InitialLayerCount { get; } = 1;
- public override float InitialExposureTime { get; } = 0;
- public override float LayerExposureTime { get; } = 0;
- public override float LiftHeight { get; } = 0;
- public override float RetractSpeed { get; } = 0;
- public override float LiftSpeed { get; } = 0;
public override float PrintTime { get; } = 0;
public override float UsedMaterial { get; } = 0;
public override float MaterialCost { get; } = 0;
@@ -54,11 +48,6 @@ namespace UVtools.Core.FileFormats
private Mat ImageMat { get; set; }
- public override bool SetValueFromPrintParameterModifier(PrintParameterModifier modifier, string value)
- {
- throw new NotImplementedException();
- }
-
public override void Decode(string fileFullPath, OperationProgress progress = null)
{
base.Decode(fileFullPath, progress);