Compare commits

...

10 commits

Author SHA1 Message Date
jacob janzen
0a31c0455b
Update README.md 2022-12-22 09:56:44 -06:00
jacob janzen
d476dc81ae
Update README.md 2022-12-22 09:56:10 -06:00
Jacob Janzen
a827aa8bdc add example result 2022-12-22 09:54:27 -06:00
jacob janzen
539597609b Merge branch 'master' of github.com:JacobJanzen/Bubbles
merge
2022-08-28 14:02:55 -05:00
jacob janzen
af7a44dfa7 tweaked colours 2022-08-28 14:02:20 -05:00
jacob janzen
bc79e15967
Update README.md 2022-08-28 13:36:03 -05:00
jacob janzen
7b801639e9 moved to 0.1.1 2022-08-28 13:19:41 -05:00
jacob janzen
132da6b84c
Update README.md 2022-08-28 13:18:42 -05:00
jacob janzen
de1eab74ef updated documentation 2022-08-28 13:17:54 -05:00
jacob janzen
95055f3a2d removed gif 2022-08-28 13:11:12 -05:00
6 changed files with 20 additions and 10 deletions

2
Cargo.lock generated
View file

@ -384,7 +384,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "writhing_mass_of_flesh"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"clap",
"gif",

View file

@ -1,6 +1,6 @@
[package]
name = "writhing_mass_of_flesh"
version = "0.1.0"
version = "0.1.2"
edition = "2021"
authors = ["Jacob Janzen"]
description = "Creates a procedurally generated image that sort of looks like bubbles"

View file

@ -1,17 +1,24 @@
# Bubbles
# Writhing Mass of Flesh
This program procedurally generates a GIF that resembles a writhing mass
of flesh. Originally, it was intended to be bubbles, but so it goes.
I recommend doing a 500x500 image with 100 cells and 100 frames to
get the best balance of appearance and run time.
I strongly recommend compiling in release mode because of the large amount
of processing that has to happen:
The easiest way to download and compile this is simply
```sh
cargo install writhing_mass_of_flesh
```
Alternatively, you can clone the repository and run
```sh
cargo build --release
```
which will put the compiled executable at `./target/release/writhing_mass_of_flesh`
USAGE:
```
bubbles --width <WIDTH> --height <HEIGHT> --frames <FRAMES> --num-cells <NUM_CELLS> --out <OUT>
```sh
writhing_mass_of_flesh --width <WIDTH> --height <HEIGHT> --frames <FRAMES> --num-cells <NUM_CELLS> --out <OUT>
```
OPTIONS:
@ -24,3 +31,6 @@ OPTIONS:
-V, --version Print version information
-w, --width <WIDTH> width of the image
```
## Example Result:
![Example Result](./example.gif?raw=true "Example")

BIN
example.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 MiB

View file

@ -159,8 +159,8 @@ impl Image {
if self.point_data[index].min_dist < 0.5 {
red = 0xFF - (102.0 * self.point_data[index].min_dist) as u8;
green = 0xFF - (512.0 * self.point_data[index].min_dist) as u8;
blue = green;
blue = 0xFF - (512.0 * self.point_data[index].min_dist) as u8;
green = (blue as f64 * 0.8) as u8;
} else {
red = 0xFF - (408.0 * (self.point_data[index].min_dist - 0.5) + 51.0) as u8;
green = 0;