15 lines
631 B
Python
Raw Normal View History

2024-09-25 20:22:46 +04:00
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