summaryrefslogtreecommitdiffstats
path: root/venv/Lib/site-packages/mpl_toolkits/axes_grid/parasite_axes.py
blob: d988d704c3444e9384fb714e1df6db56ec134714 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from matplotlib import _api
from mpl_toolkits.axes_grid1.parasite_axes import (
    host_axes_class_factory, parasite_axes_class_factory,
    parasite_axes_auxtrans_class_factory, subplot_class_factory)
from mpl_toolkits.axisartist.axislines import Axes


ParasiteAxes = parasite_axes_class_factory(Axes)
HostAxes = host_axes_class_factory(Axes)
SubplotHost = subplot_class_factory(HostAxes)
with _api.suppress_matplotlib_deprecation_warning():
    ParasiteAxesAuxTrans = parasite_axes_auxtrans_class_factory(ParasiteAxes)