rust/landgen/src/outline_template_based/outline_template.rs
branchtransitional_engine
changeset 16029 9cbd18220eb7
parent 15921 5f00829c55ec
equal deleted inserted replaced
16028:509ecce37522 16029:9cbd18220eb7
    50             is_negative: true,
    50             is_negative: true,
    51             ..self
    51             ..self
    52         }
    52         }
    53     }
    53     }
    54 
    54 
       
    55     pub fn cavern(self) -> Self {
       
    56         Self {
       
    57             is_negative: true,
       
    58             can_invert: false,
       
    59             ..self
       
    60         }
       
    61     }
       
    62 
    55     pub fn with_fill_points(self, fill_points: Vec<Point>) -> Self {
    63     pub fn with_fill_points(self, fill_points: Vec<Point>) -> Self {
    56         Self {
    64         Self {
    57             fill_points,
    65             fill_points,
    58             ..self
    66             ..self
    59         }
    67         }