@@ -1282,16 +1282,16 @@ def __init__(
1282
1282
- 'x': the curves are ``(t, f1)`` and ``(t, f2)``.
1283
1283
- 'y': the curves are ``(f1, t)`` and ``(f2, t)``.
1284
1284
1285
- t : array (length N)
1285
+ t : array-like
1286
1286
The ``t_direction`` coordinates of the nodes defining the curves.
1287
1287
1288
- f1 : array (length N) or scalar
1288
+ f1 : array-like or float
1289
1289
The other coordinates of the nodes defining the first curve.
1290
1290
1291
- f2 : array (length N) or scalar
1291
+ f2 : array-like or float
1292
1292
The other coordinates of the nodes defining the second curve.
1293
1293
1294
- where : array of bool (length N) , optional
1294
+ where : array-like of bool, optional
1295
1295
Define *where* to exclude some {dir} regions from being filled.
1296
1296
The filled regions are defined by the coordinates ``t[where]``.
1297
1297
More precisely, fill between ``t[i]`` and ``t[i+1]`` if
@@ -1362,16 +1362,16 @@ def set_data(self, t, f1, f2, *, where=None):
1362
1362
1363
1363
Parameters
1364
1364
----------
1365
- t : array (length N)
1365
+ t : array-like
1366
1366
The ``self.t_direction`` coordinates of the nodes defining the curves.
1367
1367
1368
- f1 : array (length N) or scalar
1368
+ f1 : array-like or float
1369
1369
The other coordinates of the nodes defining the first curve.
1370
1370
1371
- f2 : array (length N) or scalar
1371
+ f2 : array-like or float
1372
1372
The other coordinates of the nodes defining the second curve.
1373
1373
1374
- where : array of bool (length N) , optional
1374
+ where : array-like of bool, optional
1375
1375
Define *where* to exclude some {dir} regions from being filled.
1376
1376
The filled regions are defined by the coordinates ``t[where]``.
1377
1377
More precisely, fill between ``t[i]`` and ``t[i+1]`` if
0 commit comments