Searched refs:calculateRGBComponent (Results 1 – 1 of 1) sorted by relevance
136 $r = self::calculateRGBComponent($H + 1 / 3, $temp1, $temp2);137 $g = self::calculateRGBComponent($H, $temp1, $temp2);138 $b = self::calculateRGBComponent($H - 1 / 3, $temp1, $temp2);173 protected static function calculateRGBComponent(float $comp, float $temp1, float $temp2): float function in LesserPHP\\Utils\\Color