From 96faed81d9b0123e0170d365278187611f728981 Mon Sep 17 00:00:00 2001 From: Chloe-Woahie <68732833+Chloe-Woahie@users.noreply.github.com> Date: Mon, 9 May 2022 15:57:24 -0400 Subject: [PATCH] Update README.md --- README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5c60f7b..fb2a6b7 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,24 @@ # mini-raytracer A cpu-based raytracer written in rust. This project was written by me to learn about computer graphics, specifically rayracing. -# features +# Features * Parallelized frame computation. * Diffuse reflection. * Specular reflection. * Shadows. * Recursive object reflections. -# preview +# Preview https://user-images.githubusercontent.com/68732833/167486086-562e33e0-76c1-4c4a-b6da-cf219a726867.mp4 +# Usage + +### From Release +Download the program executable from the latest release at [releases](https://github.com/Chloe-Woahie/mini-raytracer/releases) + +### From Source +```bash +git clone https://github.com/Chloe-Woahie/mini-raytracer +cd mini-raytracer +cargo run --release +```