blob: 4ebd6acc03be2dbb0f5c3360ede2a6a36a3be01b (
plain) (
blame)
1
2
3
4
5
6
7
|
from mpl_toolkits.axes_grid1.parasite_axes import (
host_axes_class_factory, parasite_axes_class_factory)
from .axislines import Axes
ParasiteAxes = parasite_axes_class_factory(Axes)
HostAxes = SubplotHost = host_axes_class_factory(Axes)
|