Compare commits

..

No commits in common. "0a31c0455bcd48ab0200483251972689c2cbc00d" and "4553739fadb9287b6b43ddba9b32788b509a7417" have entirely different histories.

6 changed files with 10 additions and 20 deletions

2
Cargo.lock generated
View file

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

View file

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

View file

@ -1,24 +1,17 @@
# Writhing Mass of Flesh
# Bubbles
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.
of flesh. Originally, it was intended to be bubbles, but so it goes.
The easiest way to download and compile this is simply
```sh
cargo install writhing_mass_of_flesh
I strongly recommend compiling in release mode because of the large amount
of processing that has to happen:
```
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:
```sh
writhing_mass_of_flesh --width <WIDTH> --height <HEIGHT> --frames <FRAMES> --num-cells <NUM_CELLS> --out <OUT>
```
bubbles --width <WIDTH> --height <HEIGHT> --frames <FRAMES> --num-cells <NUM_CELLS> --out <OUT>
```
OPTIONS:
@ -31,6 +24,3 @@ OPTIONS:
-V, --version Print version information
-w, --width <WIDTH> width of the image
```
## Example Result:
![Example Result](./example.gif?raw=true "Example")

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 MiB

BIN
output.gif Normal file

Binary file not shown.

After

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;
blue = 0xFF - (512.0 * self.point_data[index].min_dist) as u8;
green = (blue as f64 * 0.8) as u8;
green = 0xFF - (512.0 * self.point_data[index].min_dist) as u8;
blue = green;
} else {
red = 0xFF - (408.0 * (self.point_data[index].min_dist - 0.5) + 51.0) as u8;
green = 0;