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
+2 -2
View File
@@ -2,9 +2,9 @@ name: Build & Test
on: on:
push: push:
branches: [ master ] branches: [ main ]
pull_request: pull_request:
branches: [ master ] branches: [ main ]
env: env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
+2 -1
View File
@@ -8,4 +8,5 @@ Cargo.lock
# These are backup files generated by rustfmt # These are backup files generated by rustfmt
**/*.rs.bk **/*.rs.bk
img.ppm
render.png
+1 -1
View File
@@ -1,3 +1,3 @@
# raychel-rs # raychel-rs
### quick and dirty multithreaded raymarcher using the awesome ["ray tracing in one weekend" Book Series](https://raytracing.github.io/) ### 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
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 784 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

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