@@ -209,9 +209,9 @@ def draw_markers(self, gc, marker_path, marker_trans, path,
209
209
----------
210
210
gc : `.GraphicsContextBase`
211
211
The graphics context.
212
- marker_trans : `matplotlib.transforms.Transform`
212
+ marker_trans : `~ matplotlib.transforms.Transform`
213
213
An affine transform applied to the marker.
214
- trans : `matplotlib.transforms.Transform`
214
+ trans : `~ matplotlib.transforms.Transform`
215
215
An affine transform applied to the path.
216
216
"""
217
217
for vertices , codes in path .iter_segments (trans , simplify = False ):
@@ -301,7 +301,7 @@ def draw_gouraud_triangle(self, gc, points, colors, transform):
301
301
Array of (x, y) points for the triangle.
302
302
colors : (3, 4) array-like
303
303
RGBA colors for each point of the triangle.
304
- transform : `matplotlib.transforms.Transform`
304
+ transform : `~ matplotlib.transforms.Transform`
305
305
An affine transform to apply to the points.
306
306
"""
307
307
raise NotImplementedError
@@ -319,7 +319,7 @@ def draw_gouraud_triangles(self, gc, triangles_array, colors_array,
319
319
Array of *N* (x, y) points for the triangles.
320
320
colors_array : (N, 3, 4) array-like
321
321
Array of *N* RGBA colors for each point of the triangles.
322
- transform : `matplotlib.transforms.Transform`
322
+ transform : `~ matplotlib.transforms.Transform`
323
323
An affine transform to apply to the points.
324
324
"""
325
325
raise NotImplementedError
@@ -523,7 +523,7 @@ def draw_tex(self, gc, x, y, s, prop, angle, *, mtext=None):
523
523
The font properties.
524
524
angle : float
525
525
The rotation angle in degrees anti-clockwise.
526
- mtext : `matplotlib.text.Text`
526
+ mtext : `~ matplotlib.text.Text`
527
527
The original text object to be rendered.
528
528
"""
529
529
self ._draw_text_as_path (gc , x , y , s , prop , angle , ismath = "TeX" )
@@ -548,7 +548,7 @@ def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
548
548
The rotation angle in degrees anti-clockwise.
549
549
ismath : bool or "TeX"
550
550
If True, use mathtext parser. If "TeX", use tex for rendering.
551
- mtext : `matplotlib.text.Text`
551
+ mtext : `~ matplotlib.text.Text`
552
552
The original text object to be rendered.
553
553
554
554
Notes
@@ -1342,7 +1342,7 @@ class LocationEvent(Event):
1342
1342
----------
1343
1343
x, y : int or None
1344
1344
Event location in pixels from bottom left of canvas.
1345
- inaxes : `~.axes.Axes` or None
1345
+ inaxes : `~matplotlib .axes.Axes` or None
1346
1346
The `~.axes.Axes` instance over which the mouse is, if any.
1347
1347
xdata, ydata : float or None
1348
1348
Data coordinates of the mouse within *inaxes*, or *None* if the mouse
@@ -1491,7 +1491,7 @@ class PickEvent(Event):
1491
1491
----------
1492
1492
mouseevent : `MouseEvent`
1493
1493
The mouse event that generated the pick.
1494
- artist : `matplotlib.artist.Artist`
1494
+ artist : `~ matplotlib.artist.Artist`
1495
1495
The picked artist. Note that artists are not pickable by default
1496
1496
(see `.Artist.set_picker`).
1497
1497
other
@@ -1669,7 +1669,7 @@ class FigureCanvasBase:
1669
1669
1670
1670
Attributes
1671
1671
----------
1672
- figure : `matplotlib.figure.Figure`
1672
+ figure : `~ matplotlib.figure.Figure`
1673
1673
A high-level figure instance.
1674
1674
"""
1675
1675
0 commit comments