Difference between revisions of "HRay"

From HaskellWiki
Jump to navigation Jump to search
m (category)
(+ln)
Line 25: Line 25:
 
* http://www.web3d.org/x3d/specifications/vrml/VRML1.0/index.html#Language%20Basics
 
* http://www.web3d.org/x3d/specifications/vrml/VRML1.0/index.html#Language%20Basics
   
Add you comment here...
+
Add your comment here...
  +
  +
== See also ==
  +
* [[The Monad.Reader/Issue5/HRay: A Haskell ray tracer]]
   
 
[[Category:Applications]]
 
[[Category:Applications]]

Revision as of 20:03, 12 May 2008

This wiki page is meant for feedback on my simple ray tracing application HRay, which was written in Haskell. The code and some images (and more information) are available at this website: [1].

The ultimate goal: http://graphics.ucsd.edu/~henrik/images/ :p

TODO

Some suggestions made by Troy Folger:

* add anti-aliasing
* add a file chooser
* bug: when building without -O option, mirror.hry seems to take forever

New patches

These patches haven't been added to the darcs repo yet, because they haven't been fully tested...

* http://www.elis.ugent.be/~kehoste/Haskell/HRay/files/metaball_patch
* http://www.elis.ugent.be/~kehoste/Haskell/HRay/files/quadrics_path_patch

Comments

* sylvan: implement BSP trees, implement polygon-intersection, read some standard format (VRML) and render millions of polygons ! (start with triangles, quads can be corrupt (point not in the same plane) )
* http://www.faqs.org/faqs/graphics/bsptree-faq/
* http://www.web3d.org/x3d/specifications/vrml/VRML1.0/index.html#Language%20Basics

Add your comment here...

See also