├── README.md └── rt.html /README.md: -------------------------------------------------------------------------------- 1 | jsrt README 2 | === 3 | 4 | jsrt is a simple to understand Javascript implementation of ray tracing that 5 | was designed mainly to be easy to understand and modify. It only supports 6 | very basic features (spheres and planes are the only objects you can render) 7 | but is fast enough to render small animations in real time. 8 | 9 | If you want to see it in action, there is a [demo here](http://antirez.com/misc/rt.html). 10 | -------------------------------------------------------------------------------- /rt.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Javascript RT 4 | 5 | 6 | 7 | 478 | 479 | 480 | --------------------------------------------------------------------------------