| 178 | } |
| 179 | |
| 180 | struct VectorField { |
| 181 | function: VectorFieldFunction, |
| 182 | |
| 183 | min_x: f64, |
| 184 | max_x: f64, |
| 185 | min_y: f64, |
| 186 | max_y: f64, |
| 187 | stride: f64, |
| 188 | } |
| 189 | |
| 190 | impl VectorField { |
| 191 | fn new( |
nothing calls this directly
no outgoing calls
no test coverage detected