Ejemplo n.º 1
0
 def drawBackground(self):
     """For use when using a figure on a differently coloured background.
     Allows you to specify a colour to be used as a background for the figure."""
     if isColor(self.background):
         self._doBackground(self.background)
     else:
         try:
             c = toColor(self.background)
             self._doBackground(c)
         except:
             pass
 def drawBackground(self):
     """For use when using a figure on a differently coloured background.
     Allows you to specify a colour to be used as a background for the figure."""
     if isColor(self.background):
         self._doBackground(self.background)
     else:
         try:
             c = toColor(self.background)
             self._doBackground(c)
         except:
             pass