Ejemplo n.º 1
0
 def set_joinstyle(self, js):
     """
     Set the join style to be one of ('miter', 'round', 'bevel')
     """
     DEBUG_MSG("set_joinstyle()", 1, self)
     self.select()
     GraphicsContextBase.set_joinstyle(self, js)
     self._pen.SetJoin(GraphicsContextWx._joind[self._joinstyle])
     self.gfx_ctx.SetPen(self._pen)
     self.unselect()
Ejemplo n.º 2
0
 def set_joinstyle(self, js):
     GraphicsContextBase.set_joinstyle(self, js)
     self.gdkGC.join_style = self._joind[self._joinstyle]
Ejemplo n.º 3
0
 def set_joinstyle(self, js):
     '''Set the join style based on the kivy framework join styles.
     '''
     GraphicsContextBase.set_joinstyle(self, js)
     self.line['join_style'] = js
 def set_joinstyle(self, js):
     '''Set the join style based on the kivy framework join styles.
     '''
     GraphicsContextBase.set_joinstyle(self, js)
     self.line['join_style'] = js
Ejemplo n.º 5
0
 def set_joinstyle(self, js):
     """
     Set the join style to be one of ('miter', 'round', 'bevel')
     """
     GraphicsContextBase.set_joinstyle(self, js)
     self.gdkGC.join_style = self._joind[self._joinstyle]