Exemplo n.º 1
0
 def color_at_normalized_polar_pos(self, r, theta):
     col = HSVColor(color=self.get_managed_color())
     col.h = theta
     col.s = r
     return col
Exemplo n.º 2
0
 def get_color_for_bar_amount(self, amt):
     col = HSVColor(color=self.get_managed_color())
     col.h = amt
     return col
Exemplo n.º 3
0
 def color_at_normalized_polar_pos(self, r, theta):
     col = HSVColor(color=self.get_managed_color())
     col.h = theta
     return col
Exemplo n.º 4
0
 def get_color_for_bar_amount(self, amt):
     col = HSVColor(color=self.get_managed_color())
     col.h = amt
     return col