diff --git a/interlinked/source/projects/mod.rs b/interlinked/source/projects/mod.rs index d90e9a7..a252b1f 100644 --- a/interlinked/source/projects/mod.rs +++ b/interlinked/source/projects/mod.rs @@ -14,5 +14,6 @@ pub fn all_projects() -> Vec { year_2022::day_2022_03_10(), year_2022::day_2022_03_11(), year_2022::day_2022_03_12(), + year_2022::day_2022_03_13(), ] } diff --git a/interlinked/source/projects/year_2022/mod.rs b/interlinked/source/projects/year_2022/mod.rs index c68253f..9e022e6 100644 --- a/interlinked/source/projects/year_2022/mod.rs +++ b/interlinked/source/projects/year_2022/mod.rs @@ -300,3 +300,35 @@ pub fn day_2022_03_12() -> Project { turn_off_alpha: false, } } + +/// The project made on 2022-03-13. +pub fn day_2022_03_13() -> Project { + Project { + create_input_image: false, + name: "2022-03-13".to_string(), + operations: vec![ + Plasma::default() + .with_seed(65_198_886.0) + .with_height(2160) + .with_width(3840) + .boxed(), + Cartoon::default() + .with_mask_radius(50.0) + .with_pct_black(1.0) + .boxed(), + Waterpixels::default().with_size(64).boxed(), + Oilify::default().with_mask_radius(8).boxed(), + Mirrors::default() + .with_n_segs(8) + .with_o_x(0.829) + .with_o_y(0.812) + .with_trim_x(0.325) + .with_trim_y(0.09) + .boxed(), + StereographicProjection::default().with_tilt(-73.42).boxed(), + Oilify::default().with_mask_radius(8).boxed(), + ], + resolution: (3840, 2160), + turn_off_alpha: false, + } +}