Esempio n. 1
0
 def text(self, x, y, z, s, zdir=None, **kwargs):
     '''
     Add text to the plot. kwargs will be passed on to Axes.text,
     except for the `zdir` keyword, which sets the direction to be
     used as the z direction.
     '''
     text = Axes.text(self, x, y, s, **kwargs)
     art3d.text_2d_to_3d(text, z, zdir)
     return text
Esempio n. 2
0
 def text(self, x, y, z, s, zdir=None):
     '''Add text to the plot.'''
     text = Axes.text(self, x, y, s)
     art3d.text_2d_to_3d(text, z, zdir)
     return text
Esempio n. 3
0
 def text(self, x, y, z, s, zdir=None):
     '''Add text to the plot.'''
     text = Axes.text(self, x, y, s)
     art3d.text_2d_to_3d(text, z, zdir)
     return text