Set up positions for trajectories to be used with rk4 function.
(self, xi, yi)
| 168 | arrows_x, arrows_y = self.get_streamline_arrows() |
| 169 | |
| 170 | def blank_pos(self, xi, yi): |
| 171 | """ |
| 172 | Set up positions for trajectories to be used with rk4 function. |
| 173 | """ |
| 174 | return (int((xi / self.spacing_x) + 0.5), int((yi / self.spacing_y) + 0.5)) |
| 175 | |
| 176 | def value_at(self, a, xi, yi): |
| 177 | """ |
no test coverage detected