Metadata.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Bill Thiede 2021-06-24 11:10:29 -07:00
parent 3952a8ba83
commit b159820bad
3 changed files with 18 additions and 0 deletions

5
rtchallenge/Cargo.lock generated Normal file
View File

@ -0,0 +1,5 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "rtchallenge"
version = "0.1.0"

9
rtchallenge/Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "rtchallenge"
version = "0.1.0"
authors = ["Bill Thiede <git@xinu.tv>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

4
rtchallenge/README.md Normal file
View File

@ -0,0 +1,4 @@
# The Ray Tracer Challenge: A Test-Driven Guide to Your First 3D Renderer
This is a rust implementation of https://pragprog.com/titles/jbtracer/the-ray-tracer-challenge/
It attempts to be a test-driven developed ray tracer.