changed example img name and quality

This commit is contained in:
2026-02-14 01:55:54 +01:00
parent d32ee59ca9
commit 5d866a2b9e
6 changed files with 7 additions and 5 deletions

View File

@@ -2,9 +2,9 @@ name: Build & Test
on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]
env:
CARGO_TERM_COLOR: always

3
.gitignore vendored
View File

@@ -8,4 +8,5 @@ Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
img.ppm
render.png

View File

@@ -1,3 +1,3 @@
# raychel-rs
### quick and dirty multithreaded raymarcher using the awesome ["ray tracing in one weekend" Book Series](https://raytracing.github.io/)
![Example Scene](img.png)
![Example Scene](exmple.png)

BIN
example.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 784 KiB

BIN
img.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

View File

@@ -164,5 +164,6 @@ fn main() {
pixel.channels_mut()[2] = ib;
});
img_buffer.save("img.png").unwrap();
img_buffer.save("render.png").unwrap();
}