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/SL1File.cs')
-rw-r--r--UVtools.Core/SL1File.cs20
1 files changed, 11 insertions, 9 deletions
diff --git a/UVtools.Core/SL1File.cs b/UVtools.Core/SL1File.cs
index 0ddafbd..59d077f 100644
--- a/UVtools.Core/SL1File.cs
+++ b/UVtools.Core/SL1File.cs
@@ -72,26 +72,26 @@ namespace UVtools.Core
#endregion
#region Tilt
- public byte FastTiltTime { get; set; }
- public byte SlowTiltTime { get; set; }
- public byte AreaFill { get; set; }
+ public float FastTiltTime { get; set; }
+ public float SlowTiltTime { get; set; }
+ public float AreaFill { get; set; }
#endregion
#region Corrections
public string RelativeCorrection { get; set; }
- public byte AbsoluteCorrection { get; set; }
+ public float AbsoluteCorrection { get; set; }
public float ElefantFootCompensation { get; set; }
public float ElefantFootMinWidth { get; set; }
- public byte GammaCorrection { get; set; }
+ public float GammaCorrection { get; set; }
#endregion
#region Exposure
- public byte MinExposureTime { get; set; }
- public byte MaxExposureTime { get; set; }
- public byte MinInitialExposureTime { get; set; }
- public ushort MaxInitialExposureTime { get; set; }
+ public float MinExposureTime { get; set; }
+ public float MaxExposureTime { get; set; }
+ public float MinInitialExposureTime { get; set; }
+ public float MaxInitialExposureTime { get; set; }
#endregion
@@ -481,6 +481,8 @@ namespace UVtools.Core
}
}
+ var rect = LayerManager.BoundingRectangle;
+
Statistics.ExecutionTime.Stop();
Debug.WriteLine(Statistics);