@@ -207,9 +207,9 @@ def draw_markers(self, gc, marker_path, marker_trans, path,
207207 ----------
208208 gc : `.GraphicsContextBase`
209209 The graphics context.
210- marker_trans : `matplotlib.transforms.Transform`
210+ marker_trans : `~ matplotlib.transforms.Transform`
211211 An affine transform applied to the marker.
212- trans : `matplotlib.transforms.Transform`
212+ trans : `~ matplotlib.transforms.Transform`
213213 An affine transform applied to the path.
214214 """
215215 for vertices , codes in path .iter_segments (trans , simplify = False ):
@@ -299,7 +299,7 @@ def draw_gouraud_triangle(self, gc, points, colors, transform):
299299 Array of (x, y) points for the triangle.
300300 colors : (3, 4) array-like
301301 RGBA colors for each point of the triangle.
302- transform : `matplotlib.transforms.Transform`
302+ transform : `~ matplotlib.transforms.Transform`
303303 An affine transform to apply to the points.
304304 """
305305 raise NotImplementedError
@@ -317,7 +317,7 @@ def draw_gouraud_triangles(self, gc, triangles_array, colors_array,
317317 Array of *N* (x, y) points for the triangles.
318318 colors_array : (N, 3, 4) array-like
319319 Array of *N* RGBA colors for each point of the triangles.
320- transform : `matplotlib.transforms.Transform`
320+ transform : `~ matplotlib.transforms.Transform`
321321 An affine transform to apply to the points.
322322 """
323323 raise NotImplementedError
@@ -521,7 +521,7 @@ def draw_tex(self, gc, x, y, s, prop, angle, *, mtext=None):
521521 The font properties.
522522 angle : float
523523 The rotation angle in degrees anti-clockwise.
524- mtext : `matplotlib.text.Text`
524+ mtext : `~ matplotlib.text.Text`
525525 The original text object to be rendered.
526526 """
527527 self ._draw_text_as_path (gc , x , y , s , prop , angle , ismath = "TeX" )
@@ -546,7 +546,7 @@ def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
546546 The rotation angle in degrees anti-clockwise.
547547 ismath : bool or "TeX"
548548 If True, use mathtext parser. If "TeX", use tex for rendering.
549- mtext : `matplotlib.text.Text`
549+ mtext : `~ matplotlib.text.Text`
550550 The original text object to be rendered.
551551
552552 Notes
@@ -1325,7 +1325,7 @@ class LocationEvent(Event):
13251325 ----------
13261326 x, y : int or None
13271327 Event location in pixels from bottom left of canvas.
1328- inaxes : `~.axes.Axes` or None
1328+ inaxes : `~matplotlib .axes.Axes` or None
13291329 The `~.axes.Axes` instance over which the mouse is, if any.
13301330 xdata, ydata : float or None
13311331 Data coordinates of the mouse within *inaxes*, or *None* if the mouse
@@ -1465,7 +1465,7 @@ class PickEvent(Event):
14651465 ----------
14661466 mouseevent : `MouseEvent`
14671467 The mouse event that generated the pick.
1468- artist : `matplotlib.artist.Artist`
1468+ artist : `~ matplotlib.artist.Artist`
14691469 The picked artist. Note that artists are not pickable by default
14701470 (see `.Artist.set_picker`).
14711471 other
@@ -1630,7 +1630,7 @@ class FigureCanvasBase:
16301630
16311631 Attributes
16321632 ----------
1633- figure : `matplotlib.figure.Figure`
1633+ figure : `~ matplotlib.figure.Figure`
16341634 A high-level figure instance.
16351635 """
16361636
0 commit comments