rust/landgen/src/outline_template.rs
changeset 14128 b04dac00e8e2
parent 14126 32383b888309
equal deleted inserted replaced
14127:0c5b9cfda9ab 14128:b04dac00e8e2
     1 use integral_geometry::{Point, Rect, Size};
     1 use integral_geometry::{Point, Rect, Size};
     2 
     2 
     3 #[derive(Debug)]
     3 #[derive(Clone, Debug)]
     4 pub struct OutlineTemplate {
     4 pub struct OutlineTemplate {
     5     pub islands: Vec<Vec<Rect>>,
     5     pub islands: Vec<Vec<Rect>>,
     6     pub fill_points: Vec<Point>,
     6     pub fill_points: Vec<Point>,
     7     pub size: Size,
     7     pub size: Size,
     8     pub can_flip: bool,
     8     pub can_flip: bool,