Added name property
This commit is contained in:
Родитель
23d98caa1b
Коммит
b04f707fcd
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче