You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
447 B
Python
16 lines
447 B
Python
5 years ago
|
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 .axislines import Axes
|
||
|
|
||
|
|
||
|
ParasiteAxes = parasite_axes_class_factory(Axes)
|
||
|
|
||
|
ParasiteAxesAuxTrans = \
|
||
|
parasite_axes_auxtrans_class_factory(axes_class=ParasiteAxes)
|
||
|
|
||
|
HostAxes = host_axes_class_factory(axes_class=Axes)
|
||
|
|
||
|
SubplotHost = subplot_class_factory(HostAxes)
|