Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite60a0f3

Browse files
Add fig.add_artist method
1 parentaae55fc commite60a0f3

File tree

3 files changed

+81
-0
lines changed

3 files changed

+81
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Figure has an `~.figure.Figure.add_artist` method
2+
-------------------------------------------------
3+
4+
A method `~.figure.Figure.add_artist` has been added to the
5+
:class:`~.figure.Figure` class, which allows artists to be added directly
6+
to a figure. E.g.
7+
8+
::
9+
10+
circ = plt.Circle((.7, .5), .05)
11+
fig.add_artist(circ)
12+
13+
In case the added artist has no transform set previously, it will be set to
14+
the figure transform (``fig.transFigure``).
15+
This new method may be useful for adding artists to figures without axes or to
16+
easily position static elements in figure coordinates.

‎lib/matplotlib/figure.py

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1045,6 +1045,42 @@ def fixlist(args):
10451045
key=fixlist(args),fixitems(kwargs.items())
10461046
returnkey
10471047

1048+
defadd_artist(self,artist,clip=False):
1049+
"""
1050+
Add any :class:`~matplotlib.artist.Artist` to the figure.
1051+
1052+
Usually artists are added to axes objects using
1053+
:meth:`matplotlib.axes.Axes.add_artist`, but use this method in the
1054+
rare cases that adding directly to the figure is necessary.
1055+
1056+
Parameters
1057+
----------
1058+
artist : `~matplotlib.artist.Artist`
1059+
The artist to add to the figure. If the added artist has no
1060+
transform previously set, its transform will be set to
1061+
``figure.transFigure``.
1062+
clip : bool, optional, default ``False``
1063+
An optional parameter ``clip`` determines whether the added artist
1064+
should be clipped by the figure patch. Default is *False*,
1065+
i.e. no clipping.
1066+
1067+
Returns
1068+
-------
1069+
artist : The added `~matplotlib.artist.Artist`
1070+
"""
1071+
artist.set_figure(self)
1072+
self.artists.append(artist)
1073+
artist._remove_method=self.artists.remove
1074+
1075+
ifnotartist.is_transform_set():
1076+
artist.set_transform(self.transFigure)
1077+
1078+
ifclip:
1079+
artist.set_clip_path(self.patch)
1080+
1081+
self.stale=True
1082+
returnartist
1083+
10481084
@docstring.dedent_interpd
10491085
defadd_axes(self,*args,**kwargs):
10501086
"""

‎lib/matplotlib/tests/test_figure.py

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
importsys
22
importwarnings
3+
importio
34

45
frommatplotlibimportrcParams
56
frommatplotlib.testing.decoratorsimportimage_comparison
@@ -373,6 +374,34 @@ def test_figure_repr():
373374
assertrepr(fig)=="<Figure size 100x200 with 0 Axes>"
374375

375376

377+
deftest_add_artist():
378+
fig,ax=plt.subplots(dpi=100)
379+
l1=plt.Line2D([.2,.7], [.7,.7])
380+
l2=plt.Line2D([.2,.7], [.8,.8])
381+
r1=plt.Circle((20,20),100,transform=None)
382+
r2=plt.Circle((.7,.5),.05)
383+
r3=plt.Circle((4.5,.8),.55,transform=fig.dpi_scale_trans,
384+
facecolor='crimson')
385+
forain [l1,l2,r1,r2,r3]:
386+
fig.add_artist(a)
387+
l2.remove()
388+
buf1=io.BytesIO()
389+
fig.savefig(buf1)
390+
391+
fig2,ax2=plt.subplots(dpi=100)
392+
l1=plt.Line2D([.2,.7], [.7,.7],transform=fig2.transFigure)
393+
r1=plt.Circle((20,20),100,transform=None,clip_on=False,zorder=20)
394+
r2=plt.Circle((.7,.5),.05,transform=fig2.transFigure)
395+
r3=plt.Circle((4.5,.8),.55,transform=fig.dpi_scale_trans,
396+
facecolor='crimson',clip_on=False,zorder=20)
397+
forain [l1,r1,r2,r3]:
398+
ax2.add_artist(a)
399+
buf2=io.BytesIO()
400+
fig2.savefig(buf2)
401+
402+
assertbuf1.getvalue()==buf2.getvalue()
403+
404+
376405
@pytest.mark.skipif(sys.version_info< (3,6),reason="requires Python 3.6+")
377406
@pytest.mark.parametrize("fmt", ["png","pdf","ps","eps","svg"])
378407
deftest_fspath(fmt,tmpdir):

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp