Isaac Clayton
Isaac Clayton
This is a hard one, but different 3d files should be importable. Given a file object, a file parser should read, parse, and output a `scene` using that file. This...
Right now, objects can only take on solid colors. This is not a limitation in the render itself, it's perfectly capable of building textured objects. To implement this feature, two...
Right now, keikan is not a library. A lib.rs should be added, makescene should be moved to be a test, and the rendering code (render.rs) should be moved to more...
Right now, keikan supports: - Planes - Spheres - and Mandelulbs (a fractal). This is quite a small number of objects. At the least, the following primitives should be implemented:...
Right now, keikan doesn't support depth of field. This is a fairly easy thing to do, it just requires the ray generation code to be modified in `render.rs`.
I just noticed that The Perl Conference 2018 wasn't on your list. Just a heads up. here's the site: https://perlconference.us/tpc-2018-slc/
If I have something like this: ```rust #[derive(Content)] struct Thing { #[md] content: String, } ``` And I want to render the following markdown (note, has a table): ```md #...