Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 601d3f5

Browse files
authored
Merge pull request #20181 from meeseeksmachine/auto-backport-of-pr-20171-on-v3.4.x
Backport PR #20171 on branch v3.4.x (Remove unsupported arguments from tricontourf documentation)
2 parents 46343dc + cc06262 commit 601d3f5

File tree

1 file changed

+1
-17
lines changed

1 file changed

+1
-17
lines changed

lib/matplotlib/tri/tricontour.py

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -180,13 +180,6 @@ def _contour_args(self, args, kwargs):
180180
181181
Other Parameters
182182
----------------
183-
corner_mask : bool, default: :rc:`contour.corner_mask`
184-
Enable/disable corner masking, which only has an effect if *Z* is
185-
a masked array. If ``False``, any quad touching a masked point is
186-
masked out. If ``True``, only the triangular corners of quads
187-
nearest those points are always masked out, other triangular
188-
corners comprising three unmasked points are contoured as usual.
189-
190183
colors : color string or sequence of colors, optional
191184
The colors of the levels, i.e., the contour %(type)s.
192185
@@ -272,16 +265,7 @@ def _contour_args(self, args, kwargs):
272265
antialiased : bool, optional
273266
Enable antialiasing, overriding the defaults. For
274267
filled contours, the default is *True*. For line contours,
275-
it is taken from :rc:`lines.antialiased`.
276-
277-
nchunk : int >= 0, optional
278-
If 0, no subdivision of the domain. Specify a positive integer to
279-
divide the domain into subdomains of *nchunk* by *nchunk* quads.
280-
Chunking reduces the maximum length of polygons generated by the
281-
contouring algorithm which reduces the rendering workload passed
282-
on to the backend and also requires slightly less RAM. It can
283-
however introduce rendering artifacts at chunk boundaries depending
284-
on the backend, the *antialiased* flag and value of *alpha*.""")
268+
it is taken from :rc:`lines.antialiased`.""")
285269

286270

287271
@docstring.Substitution(func='tricontour', type='lines')

0 commit comments

Comments
 (0)