Parameters ---------- xs : array-like The x-data to be plotted. ys : array-like The y-data to be plotted. zs : array-like The z-data to be plotted. *args, **kwargs Additional arguments are passed to `~m
(self, xs, ys, zs, *args, axlim_clip=False, **kwargs)
| 274 | """ |
| 275 | |
| 276 | def __init__(self, xs, ys, zs, *args, axlim_clip=False, **kwargs): |
| 277 | """ |
| 278 | |
| 279 | Parameters |
| 280 | ---------- |
| 281 | xs : array-like |
| 282 | The x-data to be plotted. |
| 283 | ys : array-like |
| 284 | The y-data to be plotted. |
| 285 | zs : array-like |
| 286 | The z-data to be plotted. |
| 287 | *args, **kwargs |
| 288 | Additional arguments are passed to `~matplotlib.lines.Line2D`. |
| 289 | """ |
| 290 | super().__init__([], [], *args, **kwargs) |
| 291 | self.set_data_3d(xs, ys, zs) |
| 292 | self._axlim_clip = axlim_clip |
| 293 | |
| 294 | def set_3d_properties(self, zs=0, zdir='z', axlim_clip=False): |
| 295 | """ |
nothing calls this directly
no test coverage detected