| 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.""" |