@@ -1288,16 +1288,16 @@ def __init__(
1288
1288
- 'x': the curves are ``(t, f1)`` and ``(t, f2)``.
1289
1289
- 'y': the curves are ``(f1, t)`` and ``(f2, t)``.
1290
1290
1291
- t : array (length N)
1291
+ t : array-like
1292
1292
The ``t_direction`` coordinates of the nodes defining the curves.
1293
1293
1294
- f1 : array (length N) or scalar
1294
+ f1 : array-like or float
1295
1295
The other coordinates of the nodes defining the first curve.
1296
1296
1297
- f2 : array (length N) or scalar
1297
+ f2 : array-like or float
1298
1298
The other coordinates of the nodes defining the second curve.
1299
1299
1300
- where : array of bool (length N) , optional
1300
+ where : array-like of bool, optional
1301
1301
Define *where* to exclude some {dir} regions from being filled.
1302
1302
The filled regions are defined by the coordinates ``t[where]``.
1303
1303
More precisely, fill between ``t[i]`` and ``t[i+1]`` if
@@ -1368,16 +1368,16 @@ def set_data(self, t, f1, f2, *, where=None):
1368
1368
1369
1369
Parameters
1370
1370
----------
1371
- t : array (length N)
1371
+ t : array-like
1372
1372
The ``self.t_direction`` coordinates of the nodes defining the curves.
1373
1373
1374
- f1 : array (length N) or scalar
1374
+ f1 : array-like or float
1375
1375
The other coordinates of the nodes defining the first curve.
1376
1376
1377
- f2 : array (length N) or scalar
1377
+ f2 : array-like or float
1378
1378
The other coordinates of the nodes defining the second curve.
1379
1379
1380
- where : array of bool (length N) , optional
1380
+ where : array-like of bool, optional
1381
1381
Define *where* to exclude some {dir} regions from being filled.
1382
1382
The filled regions are defined by the coordinates ``t[where]``.
1383
1383
More precisely, fill between ``t[i]`` and ``t[i+1]`` if
0 commit comments