diff --git a/src/Transformer/Utilities/CyanMagentaYellowKeyToHueSaturationValue.php b/src/Transformer/Utilities/CyanMagentaYellowKeyToHueSaturationValue.php index aec5071..12ed5e2 100644 --- a/src/Transformer/Utilities/CyanMagentaYellowKeyToHueSaturationValue.php +++ b/src/Transformer/Utilities/CyanMagentaYellowKeyToHueSaturationValue.php @@ -54,7 +54,7 @@ class CyanMagentaYellowKeyToHueSaturationValue $this->maxCmyProperty = max($this->cyan, $this->magenta, $this->yellow); $this->minCmyProperty = min($this->cyan, $this->magenta, $this->yellow); - $this->hue = round($this->buildHueAmount(), 3); + $this->hue = $this->buildHueAmount(); $this->saturation = $this->maxCmyProperty; $this->value = 1 - $this->key; }