Exemplo n.º 1
0
GammaModification::GammaModification(float value_):Transformation(transformation_name, getReadableName())
{
	value = value_;
}
Exemplo n.º 2
0
ColorVisionDeficiency::ColorVisionDeficiency(DeficiencyType type_, float strength_):Transformation(transformation_name, getReadableName())
{
	type = type_;
	strength = strength_;
}
Exemplo n.º 3
0
GammaModification::GammaModification():Transformation(transformation_name, getReadableName())
{
	value = 1;
}
Exemplo n.º 4
0
ColorVisionDeficiency::ColorVisionDeficiency():Transformation(transformation_name, getReadableName())
{
	type = PROTANOMALY;
	strength = 0.5;
}