15 lines
631 B
Python
15 lines
631 B
Python
|
from .axislines import Axes
|
||
|
from .axislines import ( # noqa: F401
|
||
|
AxesZero, AxisArtistHelper, AxisArtistHelperRectlinear,
|
||
|
GridHelperBase, GridHelperRectlinear, Subplot, SubplotZero)
|
||
|
from .axis_artist import AxisArtist, GridlinesCollection # noqa: F401
|
||
|
from .grid_helper_curvelinear import GridHelperCurveLinear # noqa: F401
|
||
|
from .floating_axes import FloatingAxes, FloatingSubplot # noqa: F401
|
||
|
from mpl_toolkits.axes_grid1.parasite_axes import (
|
||
|
host_axes_class_factory, parasite_axes_class_factory)
|
||
|
|
||
|
|
||
|
ParasiteAxes = parasite_axes_class_factory(Axes)
|
||
|
HostAxes = host_axes_class_factory(Axes)
|
||
|
SubplotHost = HostAxes
|