Searched refs:comp (Results 1 – 2 of 2) sorted by relevance
3 css/comp.less = all
1442 protected function toRGB_helper($comp, $temp1, $temp2) { argument1443 if ($comp < 0) $comp += 1.0;1444 elseif ($comp > 1) $comp -= 1.0;1446 if (6 * $comp < 1) return $temp1 + ($temp2 - $temp1) * 6 * $comp;1447 if (2 * $comp < 1) return $temp2;1448 if (3 * $comp < 2) return $temp1 + ($temp2 - $temp1)*((2/3) - $comp) * 6;