Add 2022-03-13.

This commit is contained in:
Bauke 2024-02-29 13:31:55 +01:00
parent 22e7987e26
commit 719c9c85e6
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
2 changed files with 33 additions and 0 deletions

View File

@ -14,5 +14,6 @@ pub fn all_projects() -> Vec<Project> {
year_2022::day_2022_03_10(),
year_2022::day_2022_03_11(),
year_2022::day_2022_03_12(),
year_2022::day_2022_03_13(),
]
}

View File

@ -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,
}
}