Skip to content

Commit ac0b7b8

Browse files
committed
Fix render errors.
1 parent 9f95d24 commit ac0b7b8

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

surfer/viz.py

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -932,7 +932,7 @@ def add_overlay(self, source, min=2, max="robust_max", sign="abs",
932932
If None, it is assumed to belong to the hemipshere being
933933
shown. If two hemispheres are being shown, an error will
934934
be thrown.
935-
**kwargs: additional keyword arguments
935+
**kwargs : additional keyword arguments
936936
These are passed to the underlying
937937
`mayavi.mlab.pipeline.surface` call.
938938
@@ -1040,7 +1040,7 @@ def add_data(self, array, min=None, max=None, thresh=None,
10401040
vector-valued data. If None (default), ``alpha`` is used.
10411041
verbose : bool, str, int, or None
10421042
If not None, override default verbose level (see surfer.verbose).
1043-
**kwargs: additional keyword arguments
1043+
**kwargs : additional keyword arguments
10441044
These are passed to the underlying
10451045
`mayavi.mlab.pipeline.surface` call.
10461046
@@ -1231,7 +1231,7 @@ def add_annotation(self, annot, borders=True, alpha=1, hemi=None,
12311231
color : matplotlib-style color code
12321232
If used, show all annotations in the same (specified) color.
12331233
Probably useful only when showing annotation borders.
1234-
**kwargs: additional keyword arguments
1234+
**kwargs : additional keyword arguments
12351235
These are passed to the underlying
12361236
`mayavi.mlab.pipeline.surface` call.
12371237
"""
@@ -1352,7 +1352,8 @@ def add_label(self, label, color=None, alpha=1, scalar_thresh=None,
13521352
label directory rather than in the label directory itself (e.g.
13531353
for ``$SUBJECTS_DIR/$SUBJECT/label/aparc/lh.cuneus.label``
13541354
``brain.add_label('cuneus', subdir='aparc')``).
1355-
**kwargs: additional keyword arguments
1355+
1356+
**kwargs : additional keyword arguments
13561357
These are passed to the underlying
13571358
`mayavi.mlab.pipeline.surface` call.
13581359
Notes
@@ -1567,7 +1568,7 @@ def add_morphometry(self, measure, grayscale=False, hemi=None,
15671568
of the data is used.
15681569
colorbar : bool
15691570
If True, show a colorbar corresponding to the overlay data.
1570-
**kwargs: additional keyword arguments
1571+
**kwargs : additional keyword arguments
15711572
These are passed to the underlying
15721573
`mayavi.mlab.pipeline.surface` call.
15731574
"""
@@ -1666,7 +1667,7 @@ def add_foci(self, coords, coords_as_verts=False, map_surface=None,
16661667
If None, it is assumed to belong to the hemipshere being
16671668
shown. If two hemispheres are being shown, an error will
16681669
be thrown.
1669-
**kwargs: additional keyword arguments
1670+
**kwargs : additional keyword arguments
16701671
These are passed to the underlying
16711672
:func:`mayavi.mlab.points3d` call.
16721673
"""
@@ -1742,7 +1743,7 @@ def add_contour_overlay(self, source, min=None, max=None,
17421743
If there is an existing contour overlay, remove it before plotting.
17431744
colorbar : bool
17441745
If True, show the colorbar for the scalar value.
1745-
**kwargs: additional keyword arguments
1746+
**kwargs : additional keyword arguments
17461747
These are passed to the underlying
17471748
`mayavi.mlab.pipeline.contour_surface` call.
17481749
"""
@@ -1798,7 +1799,7 @@ def add_text(self, x, y, text, name, color=None, opacity=1.0,
17981799
Row index of which brain to use
17991800
col : int
18001801
Column index of which brain to use
1801-
**kwargs: additional keyword arguments
1802+
**kwargs : additional keyword arguments
18021803
These are passed to the underlying
18031804
:func:`mayavi.mlab.text3d` call.
18041805
"""

0 commit comments

Comments
 (0)