MNT: escape docstrings that have rst escaping in them

This commit is contained in:
Thomas A Caswell 2019-02-14 16:39:45 -05:00
parent 691da09eb0
commit 4fe90bb215
No known key found for this signature in database
GPG Key ID: BCD928050D713D75

View File

@ -1102,7 +1102,7 @@ class ROI(GraphicsObject):
return bounds, tr
def getArrayRegion(self, data, img, axes=(0,1), returnMappedCoords=False, **kwds):
"""Use the position and orientation of this ROI relative to an imageItem
r"""Use the position and orientation of this ROI relative to an imageItem
to pull a slice from an array.
=================== ====================================================
@ -1524,7 +1524,7 @@ class TestROI(ROI):
class RectROI(ROI):
"""
r"""
Rectangular ROI subclass with a single scale handle at the top-right corner.
============== =============================================================
@ -1586,8 +1586,10 @@ class LineROI(ROI):
class MultiRectROI(QtGui.QGraphicsObject):
"""
r"""
Chain of rectangular ROIs connected by handles.
This is generally used to mark a curved path through
@ -1726,7 +1728,7 @@ class MultiLineROI(MultiRectROI):
class EllipseROI(ROI):
"""
r"""
Elliptical ROI subclass with one scale handle and one rotation handle.
@ -1810,8 +1812,9 @@ class EllipseROI(ROI):
return self.path
class CircleROI(EllipseROI):
"""
r"""
Circular ROI subclass. Behaves exactly as EllipseROI, but may only be scaled
proportionally to maintain its aspect ratio.
@ -1880,7 +1883,7 @@ class PolygonROI(ROI):
class PolyLineROI(ROI):
"""
r"""
Container class for multiple connected LineSegmentROIs.
This class allows the user to draw paths of multiple line segments.
@ -2076,7 +2079,7 @@ class PolyLineROI(ROI):
class LineSegmentROI(ROI):
"""
r"""
ROI subclass with two freely-moving handles defining a line.
============== =============================================================