initial commit
This commit is contained in:
parent
d6571bf9b7
commit
6749d00ebf
4 changed files with 1569 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
/.idea/
|
||||
/vendor/
|
||||
6
README
Normal file
6
README
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# The Ray Tracer Challenge
|
||||
|
||||
This project is based on the book [The Ray Tracer Challenge](https://www.amazon.de/Ray-Tracer-Challenge-Test-Driven-Renderer/dp/1680502719)
|
||||
by [Jamis Buck](https://twitter.com/jamis) and will hopefully contain my own 3D renderer at some point.
|
||||
|
||||
I think I'm going to tag the states after each chapter, so anyone who is interested can see the progress from chapter to chapter.
|
||||
24
composer.json
Normal file
24
composer.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"name": "mirko/the-ray-tracer-challenge",
|
||||
"description": "My frist 3D renderer based on the book \"The Ray Tracer Challenge\"",
|
||||
"type": "project",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Mirko Janssen",
|
||||
"email": "mail@mirkojanssen.de"
|
||||
}
|
||||
],
|
||||
"minimum-stability": "stable",
|
||||
"require": {
|
||||
"php": "^7.3"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^8.3"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"ItsAMirko\\RayTracer\\": "src/"
|
||||
}
|
||||
}
|
||||
}
|
||||
1537
composer.lock
generated
Normal file
1537
composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue