Tests für HSV hinzugefügt.

This commit is contained in:
2021-03-02 12:05:47 +01:00
parent 540929e893
commit e85c57c628
2 changed files with 125 additions and 0 deletions
@@ -5,6 +5,7 @@ namespace TorstenHettstedt\Colors\Transformer;
use TorstenHettstedt\Colors\ColorModels\CyanMagentaYellowKey;
use TorstenHettstedt\Colors\ColorModels\HueSaturationValue;
use TorstenHettstedt\Colors\ColorModels\RedGreenBlue;
interface ColorModelTransformInterface
@@ -12,4 +13,6 @@ interface ColorModelTransformInterface
public function toRedGreenBlue(): RedGreenBlue;
public function toCyanMagentaYellowKey(): CyanMagentaYellowKey;
public function toHueSaturationValue(): HueSaturationValue;
}