MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / __init__

Method __init__

lib/mpl_toolkits/mplot3d/art3d.py:148–161  ·  view source on GitHub ↗
(self, x=0, y=0, z=0, text='', zdir='z', axlim_clip=False,
                 **kwargs)

Source from the content-addressed store, hash-verified

146 """
147
148 def __init__(self, x=0, y=0, z=0, text='', zdir='z', axlim_clip=False,
149 **kwargs):
150 if 'rotation' in kwargs:
151 _api.warn_external(
152 "The `rotation` parameter has not yet been implemented "
153 "and is currently ignored."
154 )
155 if 'rotation_mode' in kwargs:
156 _api.warn_external(
157 "The `rotation_mode` parameter has not yet been implemented "
158 "and is currently ignored."
159 )
160 mtext.Text.__init__(self, x, y, text, **kwargs)
161 self.set_3d_properties(z, zdir, axlim_clip)
162
163 def get_position_3d(self):
164 """Return the (x, y, z) position of the text."""

Callers 7

__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45

Calls 1

set_3d_propertiesMethod · 0.95

Tested by

no test coverage detected