Show HN: Godray – a simple ray tracer
github.com
Show HN: Godray – a simple ray tracer
1–10 of 13 posts
Re: Show HN: Godray – a simple ray tracer
#2Re: Show HN: Godray – a simple ray tracer
#3Re: Show HN: Godray – a simple ray tracer
#4What would you recommend for writing a simple ray tracer? Any books or websites?
Re: Show HN: Godray – a simple ray tracer
#5Re: Show HN: Godray – a simple ray tracer
#6What would you recommend for writing a simple ray tracer? Any books or websites?
In order to learn more (I admittedly know very little about anything other than the phong model - the other friend is much more knowledgable), I presume either a textbook or a course notes like this https://www.student.cs.uwaterloo.ca/~cs488/notes.pdf will probably help.
Re: Show HN: Godray – a simple ray tracer
#7Are there any dependencies to run it on Windows? I do 'go run src/main.go' on Windows, and nothing happens and there are no errors reported.
You should see an output.png if it run successfully in the same folder.
Sorry, no easy access to a windows right now, but I will try it out on when I get a chance.
Re: Show HN: Godray – a simple ray tracer
#8Are there any dependencies to run it on Windows? I do 'go run src/main.go' on Windows, and nothing happens and there are no errors reported.
Re: Show HN: Godray – a simple ray tracer
#9Re: Show HN: Godray – a simple ray tracer
#10`go run` compiles the application, then runs it, the executable simply doesn't appear in the current directory as it would with `go build`.
I know sometimes it's tough to tell because of the insanely quick compilation speeds ;)