Difference between revisions of "FieldTrip"

From HaskellWiki
Jump to navigation Jump to search
m (tweak the "learn more" list)
Line 9: Line 9:
 
One describes what models are, not how to render them.
 
One describes what models are, not how to render them.
   
Besides this wiki page, here are more ways to find out about FieldTrip:
+
Besides this wiki page, here are more ways to find out about and get involved with FieldTrip:
* Read [http://code.haskell.org/FieldTrip/doc/html/ the library documentation].
+
* Join the [http://www.haskell.org/mailman/listinfo/FieldTrip FieldTrip mailing list].
* Get the code repository: '''<tt>darcs get http://code.haskell.org/FieldTrip</tt>'''.
+
* Peruse [http://code.haskell.org/FieldTrip/doc/html/ the library documentation].
* Install from [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/FieldTrip Hackage].
+
* Install [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/FieldTrip from Hackage].
  +
* Download the code repository: '''<tt>darcs get http://code.haskell.org/FieldTrip</tt>'''. Patches welcome.
* See the [[FieldTrip/Versions| version history]].
 
  +
* Report bugs and request features on [http://trac.haskell.org/fieldtrip/ the tracker].
 
* Examine the [[FieldTrip/Versions| version history]].
   
Please leave comments at the [[Talk:FieldTrip|Talk page]].
 
   
 
== Basic types ==
 
== Basic types ==
Line 35: Line 36:
 
== FieldTrip meets Reactive ==
 
== FieldTrip meets Reactive ==
   
FieldTrip contains no support for animation, because we envision it being used with the [[Reactive]] functional reactive programming ([[FRP]]) library (and possibly other animation frameworks).
+
FieldTrip contains no support for animation, because we intend it to be used with the [[Reactive]] functional reactive programming ([[FRP]]) library (and possibly other animation frameworks).
 
By design, FieldTrip is completely orthogonal to any formulation or implementation of FRP.
 
By design, FieldTrip is completely orthogonal to any formulation or implementation of FRP.
  +
  +
The [[reactive-fieldtrip]] project connects [[Reactive]] and FieldTrip.

Revision as of 01:40, 8 November 2008


Abstract

FieldTrip is a library for functional 3D graphics, intended for building static, animated, and interactive 3D geometry, efficient enough for real-time synthesis and display. Our first renderer uses OpenGL, with the usual visual limitations. Since FieldTrip is functional, it is about being rather than doing. One describes what models are, not how to render them.

Besides this wiki page, here are more ways to find out about and get involved with FieldTrip:


Basic types

The basic purpose of the core FieldTrip library is to allow a user build 3D geometry, from individual simple shapes to full 3D scenes. The principal types are as follows.

Geometry3
3D geometry. These values can be spatially transformed in space (affinely: scale, rotate, translate) and combined (union).
Surf a = (a,a) -> (a,a,a)
Parametric surfaces, i.e., mappings from 2D to 3D. Normals are constructed automatically and exactly via derivatives, thanks to the vector-space library. These normals are used for shading. For simplicity and composability, surfaces are curved, not faceted. Surface rendering tessellates adaptively, caching tessellations in an efficient, infinite data structure for reuse. The mechanism for choosing tessellation is a very primitive placeholder. FieldTrip provides some basic shapes of surfaces (spheres, torus, cubes, etc) and many functions for manipulating surfaces, colors, etc.
Geometry2
2D geometry. There's a function (flatG) to embed 2D into 3D.
Image o = (R,R) -> o
A primitive placeholder for functional imagery in the spirit of Pan. The intention is to use this type or something like it for texture mapping. Much design and implementation work to be done.

FieldTrip meets Reactive

FieldTrip contains no support for animation, because we intend it to be used with the Reactive functional reactive programming (FRP) library (and possibly other animation frameworks). By design, FieldTrip is completely orthogonal to any formulation or implementation of FRP.

The reactive-fieldtrip project connects Reactive and FieldTrip.