This commit is contained in:
Wiesław Šoltés 2018-11-05 19:06:15 +01:00
Родитель 23d98caa1b
Коммит b04f707fcd
9 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -5,6 +5,8 @@ namespace ThemeEditor.ColorMatch.Algorithms
{
public class Analogue : IAlgorithm
{
public string Name => "Analogue";
public Blend Match(HSV hsv)
{
Blend outp = new Blend();

Просмотреть файл

@ -4,6 +4,8 @@ namespace ThemeEditor.ColorMatch.Algorithms
{
public class Classic : IAlgorithm
{
public string Name => "Classic";
public Blend Match(HSV hsv)
{
Blend outp = new Blend();

Просмотреть файл

@ -5,6 +5,8 @@ namespace ThemeEditor.ColorMatch.Algorithms
{
public class ColorExplorer : IAlgorithm
{
public string Name => "Color Explorer";
public Blend Match(HSV hsv)
{
Blend outp = new Blend();

Просмотреть файл

@ -5,6 +5,8 @@ namespace ThemeEditor.ColorMatch.Algorithms
{
public class Complementary : IAlgorithm
{
public string Name => "Complementary";
public Blend Match(HSV hsv)
{
Blend outp = new Blend();

Просмотреть файл

@ -4,6 +4,8 @@ namespace ThemeEditor.ColorMatch.Algorithms
{
public class SingleHue : IAlgorithm
{
public string Name => "Single Hue";
public Blend Match(HSV hsv)
{
Blend outp = new Blend();

Просмотреть файл

@ -4,6 +4,8 @@ namespace ThemeEditor.ColorMatch.Algorithms
{
public class SplitComplementary : IAlgorithm
{
public string Name => "Split Complementary";
public Blend Match(HSV hsv)
{
Blend outp = new Blend();

Просмотреть файл

@ -4,6 +4,8 @@ namespace ThemeEditor.ColorMatch.Algorithms
{
public class Square : IAlgorithm
{
public string Name => "Square";
public Blend Match(HSV hsv)
{
Blend outp = new Blend();

Просмотреть файл

@ -4,6 +4,8 @@ namespace ThemeEditor.ColorMatch.Algorithms
{
public class Triadic : IAlgorithm
{
public string Name => "Triadic";
public Blend Match(HSV hsv)
{
Blend outp = new Blend();

Просмотреть файл

@ -4,6 +4,7 @@ namespace ThemeEditor.ColorMatch
{
public interface IAlgorithm
{
string Name { get; }
Blend Match(HSV hsv);
}
}