diff --git a/README.md b/README.md new file mode 100644 index 0000000..1a78814 --- /dev/null +++ b/README.md @@ -0,0 +1,34 @@ +# raytracing + +Based on the series Ray Tracing in One Weekend. + +## Scenes + +### simple +![](./docs/simple.png) + +``` +java -jar raytracing.jar --samples 5000 --height 1080 SIMPLE +``` +### squares +![](./docs/squares.png) + +``` +java -jar raytracing.jar --samples 500 --height 1200 SQUARES +``` + +### cornell box + +![](./docs/cornell.png) + +``` +java -jar raytracing.jar --samples 50000 --height 1200 CORNELL +``` + +### cornell box with smoke + +![](./docs/cornell_smoke.png) + +``` +java -jar raytracing.jar --samples 50000 --height 600 CORNELL_SMOKE +``` \ No newline at end of file diff --git a/docs/cornell.png b/docs/cornell.png new file mode 100644 index 0000000..9eb79b9 Binary files /dev/null and b/docs/cornell.png differ diff --git a/docs/cornell_smoke.png b/docs/cornell_smoke.png new file mode 100644 index 0000000..d4e202c Binary files /dev/null and b/docs/cornell_smoke.png differ diff --git a/docs/simple.png b/docs/simple.png new file mode 100644 index 0000000..85b2312 Binary files /dev/null and b/docs/simple.png differ diff --git a/docs/squares.png b/docs/squares.png new file mode 100644 index 0000000..f66d4d1 Binary files /dev/null and b/docs/squares.png differ