1use ndarray::Array1; 2 3/// struct representing a static obstacle 4#[derive(Debug)] 5pub struct Obstacle { 6 pub start: Array1<f64>, 7 pub end: Array1<f64>, 8 pub radius: f64, 9}