Compare commits
10 commits
4553739fad
...
0a31c0455b
Author | SHA1 | Date | |
---|---|---|---|
|
0a31c0455b | ||
|
d476dc81ae | ||
|
a827aa8bdc | ||
|
539597609b | ||
|
af7a44dfa7 | ||
|
bc79e15967 | ||
|
7b801639e9 | ||
|
132da6b84c | ||
|
de1eab74ef | ||
|
95055f3a2d |
6 changed files with 20 additions and 10 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -384,7 +384,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "writhing_mass_of_flesh"
|
name = "writhing_mass_of_flesh"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"gif",
|
"gif",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "writhing_mass_of_flesh"
|
name = "writhing_mass_of_flesh"
|
||||||
version = "0.1.0"
|
version = "0.1.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Jacob Janzen"]
|
authors = ["Jacob Janzen"]
|
||||||
description = "Creates a procedurally generated image that sort of looks like bubbles"
|
description = "Creates a procedurally generated image that sort of looks like bubbles"
|
||||||
|
|
22
README.md
22
README.md
|
@ -1,17 +1,24 @@
|
||||||
# Bubbles
|
# Writhing Mass of Flesh
|
||||||
|
|
||||||
This program procedurally generates a GIF that resembles a writhing mass
|
This program procedurally generates a GIF that resembles a writhing mass
|
||||||
of flesh. Originally, it was intended to be bubbles, but so it goes.
|
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
|
The easiest way to download and compile this is simply
|
||||||
of processing that has to happen:
|
```sh
|
||||||
|
cargo install writhing_mass_of_flesh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Alternatively, you can clone the repository and run
|
||||||
|
```sh
|
||||||
cargo build --release
|
cargo build --release
|
||||||
```
|
```
|
||||||
|
which will put the compiled executable at `./target/release/writhing_mass_of_flesh`
|
||||||
|
|
||||||
USAGE:
|
USAGE:
|
||||||
```
|
```sh
|
||||||
bubbles --width <WIDTH> --height <HEIGHT> --frames <FRAMES> --num-cells <NUM_CELLS> --out <OUT>
|
writhing_mass_of_flesh --width <WIDTH> --height <HEIGHT> --frames <FRAMES> --num-cells <NUM_CELLS> --out <OUT>
|
||||||
```
|
```
|
||||||
|
|
||||||
OPTIONS:
|
OPTIONS:
|
||||||
|
@ -24,3 +31,6 @@ OPTIONS:
|
||||||
-V, --version Print version information
|
-V, --version Print version information
|
||||||
-w, --width <WIDTH> width of the image
|
-w, --width <WIDTH> width of the image
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Example Result:
|
||||||
|

|
||||||
|
|
BIN
example.gif
Normal file
BIN
example.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.1 MiB |
BIN
output.gif
BIN
output.gif
Binary file not shown.
Before Width: | Height: | Size: 16 MiB |
|
@ -159,8 +159,8 @@ impl Image {
|
||||||
|
|
||||||
if self.point_data[index].min_dist < 0.5 {
|
if self.point_data[index].min_dist < 0.5 {
|
||||||
red = 0xFF - (102.0 * self.point_data[index].min_dist) as u8;
|
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 = 0xFF - (512.0 * self.point_data[index].min_dist) as u8;
|
||||||
blue = green;
|
green = (blue as f64 * 0.8) as u8;
|
||||||
} else {
|
} else {
|
||||||
red = 0xFF - (408.0 * (self.point_data[index].min_dist - 0.5) + 51.0) as u8;
|
red = 0xFF - (408.0 * (self.point_data[index].min_dist - 0.5) + 51.0) as u8;
|
||||||
green = 0;
|
green = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue