@@ -209,9 +209,9 @@ def draw_markers(self, gc, marker_path, marker_trans, path,
209209 ----------
210210 gc : `.GraphicsContextBase`
211211 The graphics context.
212- marker_trans : `matplotlib.transforms.Transform`
212+ marker_trans : `~ matplotlib.transforms.Transform`
213213 An affine transform applied to the marker.
214- trans : `matplotlib.transforms.Transform`
214+ trans : `~ matplotlib.transforms.Transform`
215215 An affine transform applied to the path.
216216 """
217217 for vertices , codes in path .iter_segments (trans , simplify = False ):
@@ -301,7 +301,7 @@ def draw_gouraud_triangle(self, gc, points, colors, transform):
301301 Array of (x, y) points for the triangle.
302302 colors : (3, 4) array-like
303303 RGBA colors for each point of the triangle.
304- transform : `matplotlib.transforms.Transform`
304+ transform : `~ matplotlib.transforms.Transform`
305305 An affine transform to apply to the points.
306306 """
307307 raise NotImplementedError
@@ -319,7 +319,7 @@ def draw_gouraud_triangles(self, gc, triangles_array, colors_array,
319319 Array of *N* (x, y) points for the triangles.
320320 colors_array : (N, 3, 4) array-like
321321 Array of *N* RGBA colors for each point of the triangles.
322- transform : `matplotlib.transforms.Transform`
322+ transform : `~ matplotlib.transforms.Transform`
323323 An affine transform to apply to the points.
324324 """
325325 raise NotImplementedError
@@ -523,7 +523,7 @@ def draw_tex(self, gc, x, y, s, prop, angle, *, mtext=None):
523523 The font properties.
524524 angle : float
525525 The rotation angle in degrees anti-clockwise.
526- mtext : `matplotlib.text.Text`
526+ mtext : `~ matplotlib.text.Text`
527527 The original text object to be rendered.
528528 """
529529 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):
548548 The rotation angle in degrees anti-clockwise.
549549 ismath : bool or "TeX"
550550 If True, use mathtext parser. If "TeX", use tex for rendering.
551- mtext : `matplotlib.text.Text`
551+ mtext : `~ matplotlib.text.Text`
552552 The original text object to be rendered.
553553
554554 Notes
@@ -1342,7 +1342,7 @@ class LocationEvent(Event):
13421342 ----------
13431343 x, y : int or None
13441344 Event location in pixels from bottom left of canvas.
1345- inaxes : `~.axes.Axes` or None
1345+ inaxes : `~matplotlib .axes.Axes` or None
13461346 The `~.axes.Axes` instance over which the mouse is, if any.
13471347 xdata, ydata : float or None
13481348 Data coordinates of the mouse within *inaxes*, or *None* if the mouse
@@ -1491,7 +1491,7 @@ class PickEvent(Event):
14911491 ----------
14921492 mouseevent : `MouseEvent`
14931493 The mouse event that generated the pick.
1494- artist : `matplotlib.artist.Artist`
1494+ artist : `~ matplotlib.artist.Artist`
14951495 The picked artist. Note that artists are not pickable by default
14961496 (see `.Artist.set_picker`).
14971497 other
@@ -1669,7 +1669,7 @@ class FigureCanvasBase:
16691669
16701670 Attributes
16711671 ----------
1672- figure : `matplotlib.figure.Figure`
1672+ figure : `~ matplotlib.figure.Figure`
16731673 A high-level figure instance.
16741674 """
16751675
0 commit comments