pub trait Shape {
    // Required method
    fn get_shape(&self) -> &Vec<Vec<Coord>> ;
}

Required Methods§

source

fn get_shape(&self) -> &Vec<Vec<Coord>>

Implementors§