diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2020-07-23 16:34:59 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2020-07-23 16:34:59 +0300 |
| commit | f18636711f5cdf36f561dfe4da93335a08000877 (patch) | |
| tree | 5e582002c00a09a7f11c91389ceb2be0accf6f57 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML | |
| parent | de4a450a8d2cea6c4af63f318f1a1a723f0f01db (diff) | |
| download | Tango-f18636711f5cdf36f561dfe4da93335a08000877.tar.gz Tango-f18636711f5cdf36f561dfe4da93335a08000877.zip | |
Color Calibration. Change order items in input Ink file of linearization.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML')
2 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/ColorLinearizationModel.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/ColorLinearizationModel.cs index 8a24a9702..53e15f976 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/ColorLinearizationModel.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Models/ColorLinearizationModel.cs @@ -11,10 +11,10 @@ namespace Tango.MachineStudio.RML.Models { public class LinearizationDataItem { + public double InkPercentage { get; set; } public double L { get; set; } public double A { get; set; } public double B { get; set; } - public int InkPercentage { get; set; } } public ColorLinearizationModel() diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Views/ColorCalibrationView.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Views/ColorCalibrationView.xaml index 291d335de..b9077d365 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Views/ColorCalibrationView.xaml +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Views/ColorCalibrationView.xaml @@ -103,7 +103,7 @@ <oxy:Plot Title="{Binding LiquidTypeName}" x:Name="CalibrationPlot" Margin="0 0 10 0" Background="Transparent"> <oxy:Plot.Series > <oxy:LineSeries ItemsSource="{Binding Points}" Color="#73B6EC" MarkerFill="SteelBlue" MarkerType="Circle" /> - <oxy:LineSeries ItemsSource="{Binding TargetPoints}" Color="#E14141" MarkerFill="#E14141" MarkerType="Circle" /> + <oxy:LineSeries ItemsSource="{Binding TargetPoints}" Color="#E14141" /> </oxy:Plot.Series> <oxy:Plot.Axes> <oxy:LinearAxis Position="Bottom" Title = "nl/cm" MajorGridlineStyle="Solid" MinorGridlineStyle="Dot" IsZoomEnabled="True"/> |
