wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



wp_tinycolor_hue_to_rgb › WordPress Function

Desde5.8.0
Obsoleto6.3.0
wp_tinycolor_hue_to_rgb ( $p, $q, $t )
Acesso:
  • private
Parâmetros: (3)
  • (float) $p first component.
    Required: Yes
  • (float) $q second component.
    Required: Yes
  • (float) $t third component.
    Required: Yes
Links:
Retorna:
  • (float) R, G, or B component.
Definido em:
Codex:

Helper function for hsl to rgb conversion.

Direct port of TinyColor's function, lightly simplified to maintain consistency with TinyColor.


Fonte

function wp_tinycolor_hue_to_rgb( $p, $q, $t ) {
	_deprecated_function( __FUNCTION__, '6.3.0' );

	if ( $t < 0 ) {
		++$t;
	}
	if ( $t > 1 ) {
		--$t;
	}
	if ( $t < 1 / 6 ) {
		return $p + ( $q - $p ) * 6 * $t;
	}
	if ( $t < 1 / 2 ) {
		return $q;
	}
	if ( $t < 2 / 3 ) {
		return $p + ( $q - $p ) * ( 2 / 3 - $t ) * 6;
	}
	return $p;
}