From 5fecf53713e8711a8a8cd2f678de58e49e4e2a52 Mon Sep 17 00:00:00 2001 From: Finn Bear <finnbearlabs@gmail.com> Date: Tue, 26 Apr 2022 22:12:07 -0700 Subject: [PATCH] README. --- README.md | 14 +++++++++++++- src/image/README.md | 1 + src/slide/s8_conclusion.rs | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 src/image/README.md diff --git a/README.md b/README.md index 8987ded..065e5df 100644 --- a/README.md +++ b/README.md @@ -1 +1,13 @@ -# generative_art_cartoon \ No newline at end of file +# generative_art_cartoon + +## Introduction + +With generative art, the final product is realized by an artistic algorithm of your design. We’ll show you some of the generative tools you could add to your artistic toolbelt, and just how expressive they can be! + +## Development + +General compilation instructions can be found [here](https://github.com/emilk/eframe_template/blob/master/README.md). + +### Linux + +`sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev` \ No newline at end of file diff --git a/src/image/README.md b/src/image/README.md new file mode 100644 index 0000000..0bd11ed --- /dev/null +++ b/src/image/README.md @@ -0,0 +1 @@ +For now, these images are random placeholders. \ No newline at end of file diff --git a/src/slide/s8_conclusion.rs b/src/slide/s8_conclusion.rs index 31c248c..ea44b7d 100644 --- a/src/slide/s8_conclusion.rs +++ b/src/slide/s8_conclusion.rs @@ -11,7 +11,7 @@ impl Slide for Conclusion { Frame::none().margin(Margin::same(20.0)).show(ui, |ui| { ui.heading("Conclusion"); ui.add_space(8.0); - ui.label("TODO: Conclusion"); + ui.label("Oh by the way, this entire cartoon was rendered by code!"); }); } } -- GitLab