2013-08-13 19:31:56 +02:00
|
|
|
#pragma once
|
|
|
|
|
2013-08-13 20:10:19 +02:00
|
|
|
/// Simple structure to contain the values of a color transformation
|
2013-08-13 19:45:17 +02:00
|
|
|
struct ColorTransformValues
|
2013-08-13 19:31:56 +02:00
|
|
|
{
|
2013-09-09 20:35:28 +00:00
|
|
|
/// The value for the red color-channel
|
2013-08-13 20:10:19 +02:00
|
|
|
double valueRed;
|
2013-09-09 20:35:28 +00:00
|
|
|
/// The value for the green color-channel
|
2013-08-13 20:10:19 +02:00
|
|
|
double valueGreen;
|
2013-09-09 20:35:28 +00:00
|
|
|
/// The value for the blue color-channel
|
2013-08-13 20:10:19 +02:00
|
|
|
double valueBlue;
|
2013-08-13 19:31:56 +02:00
|
|
|
};
|