[[Category:Graphics]] [[Category:Packages]] == 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: * Join the [http://www.haskell.org/mailman/listinfo/FieldTrip FieldTrip mailing list]. * Peruse [http://code.haskell.org/FieldTrip/doc/html/ the library documentation]. * Install [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/FieldTrip from Hackage]. * Download the code repository: '''darcs get http://code.haskell.org/FieldTrip'''. Patches welcome. * Report bugs and request features on [http://trac.haskell.org/fieldtrip/ the tracker]. * Examine the [[FieldTrip/Versions| version history]]. == 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 [http://conal.net/Pan 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.