File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -594,11 +594,20 @@ def _set_lim_and_transforms(self):
594594 :class:`~matplotlib.transforms.Bbox` attributes and the
595595 *transScale*, *transData*, *transLimits* and *transAxes*
596596 transformations.
597+
598+ .. note::
599+ This method is primarily used by rectilinear projections
600+ of the :class:`~matplotlib.axes.Axes` class, and is meant
601+ to be overridden by new kinds of projection axes that need
602+ different transformations and limits. (See
603+ :class:`~matplotlib.projections.polar.PolarAxes` for an
604+ example.
597605 """
598606 self .transAxes = mtransforms .BboxTransformTo (self .bbox )
599607
600- # Transforms the x and y axis separately by a scale factor
608+ # Transforms the x and y axis separately by a scale factor.
601609 # It is assumed that this part will have non-linear components
610+ # (e.g. for a log scale).
602611 self .transScale = mtransforms .TransformWrapper (
603612 mtransforms .IdentityTransform ())
604613
You can’t perform that action at this time.
0 commit comments