up vote 1 down vote favorite
1
share [g+] share [fb]

For this function I can use tuple elements as arguments:

light_blue = .6, .8, .9
gradient.add_color_rgb(0, *light_blue)

What if i have to add another argument after the tuple?

light_blue = .6, .8, .9
alpha = .5
gradient.add_color_rgba(0, *light_blue, alpha)

does not work. What does work is

gradient.add_color_rgba(0, *list(light_blue)+[alpha])

which does not really look better than

gradient.add_color_rgba(0, light_blue[0], light_blue[1], light_blue[2], alpha)

Is there a better way to do this?

link|improve this question
feedback

2 Answers

up vote 5 down vote accepted

You could call it like gradient.add_color_rgba(0, *light_blue, alpha=alpha) if you know parameter name for the alpha.

link|improve this answer
Thanks, this does the job. – mosaic Jul 31 '10 at 10:47
feedback

You can simplify the expression slightly by making a tuple instead of a list containing light_blue and alpha e.g.

gradient.add_color_rgba(0, *(light_blue + (alpha,)))
link|improve this answer
Depending on light_blue type is quite nasty. IMO it's better to assume that it's any iterable. – Tomasz Wysocki Jul 31 '10 at 10:31
1  
Ok now i remember this is the way to create a one-element tuple. – mosaic Jul 31 '10 at 10:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.