Ejemplo n.º 1
0
func maybeBlendColor(first, second gohue.MaybeColor, ratio float64) gohue.MaybeColor {
	if first.Valid && second.Valid {
		return gohue.NewMaybeColor(first.Blend(second.Color, ratio))
	}
	return first
}