Makes all streamlines readable as a single trace. :rtype (list, list): streamline_x: all x values for each streamline combined into single list and streamline_y: all y values for each streamline combined into single list
(self)
| 394 | return arrows_x, arrows_y |
| 395 | |
| 396 | def sum_streamlines(self): |
| 397 | """ |
| 398 | Makes all streamlines readable as a single trace. |
| 399 | |
| 400 | :rtype (list, list): streamline_x: all x values for each streamline |
| 401 | combined into single list and streamline_y: all y values for each |
| 402 | streamline combined into single list |
| 403 | """ |
| 404 | streamline_x = sum(self.st_x, []) |
| 405 | streamline_y = sum(self.st_y, []) |
| 406 | return streamline_x, streamline_y |
no outgoing calls
no test coverage detected