Jump to content

POV-Ray: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Necro86 (talk | contribs)
No edit summary
Unsliced (talk | contribs)
Line 20: Line 20:


POV-Ray was the first ray tracer to render an image in [[Earth orbit|orbit]], rendered by [[Mark Shuttleworth]] inside the [[International Space Station]].<ref>http://www.oyonale.com/iss.php</ref>
POV-Ray was the first ray tracer to render an image in [[Earth orbit|orbit]], rendered by [[Mark Shuttleworth]] inside the [[International Space Station]].<ref>http://www.oyonale.com/iss.php</ref>

Features of the application and a summary of its history are discussed in an interview with David Kirk Buck and Chris Cason on episode 24 of [[FLOSS Weekly]] <ref>http://twit.tv/floss24</ref>.


==Features==
==Features==

Revision as of 14:50, 20 February 2008

POV-Ray
Developer(s)The POV-Team
Stable release
3.6 / July 12, 2004
Preview release
3.7.beta.25b / February 8, 2007
Repository
Operating systemCross-platform
TypeRay tracer
LicensePOV-Ray License
Websitewww.povray.org

The Persistence of Vision Raytracer, or POV-Ray, is a ray tracing program available for a variety of computer platforms. It was originally based on DKBTrace, written by David Kirk Buck and Aaron A. Collins. There are also influences from the earlier Polyray raytracer contributed by its author Alexander Enzmann. POV-Ray is freeware with the source code available.

History

Some time in the 1980s, David Kirk Buck downloaded the source code for a Unix raytracer to his Amiga. Interested, he played with it for a while, eventually deciding to write his own raytracer, named DKBTrace after his initials. He posted it to his bulletin board system, thinking others might be interested in it. In 1987, Aaron Collins downloaded DKBTrace and began working on an x86-based port of it. He and David Buck collaborated to add several more features. When the program proved to be more popular than anticipated they could not keep up with demand for more features. Thus, in July 1991, David turned over the project to a team of programmers. At the same time, he felt that it was inappropriate to use his initials on a program he no longer maintained. The name "STAR" (Software Taskforce on Animation and Rendering) was considered, but eventually the name became the "Persistence of Vision Raytracer," or "POV-Ray" for short.[1]

POV-Ray was the first ray tracer to render an image in orbit, rendered by Mark Shuttleworth inside the International Space Station.[2]

Features of the application and a summary of its history are discussed in an interview with David Kirk Buck and Chris Cason on episode 24 of FLOSS Weekly [3].

Features

Glass scene rendered in POV-Ray, demonstrating radiosity, photons, focal blur, and other photorealistic capabilities

POV-Ray has matured substantially since it was created. Recent versions of the software include the following features:

One of POV-Ray's main attractions is its large collection of third party support. A large number of tools, textures, models, scenes, and tutorials can be found on the web. It is also a useful reference for those wanting to learn how ray tracing and related geometry and graphics algorithms work.

Current version

The current official version of POV-Ray is 3.6. Some of the main features of this release:

Beta-testing of version 3.7 is underway as of fall 2006. The main improvement over 3.6 will be SMP support to allow the renderer to take advantage of multiple processors. Additionally, support has been added for HDRI, including the OpenEXR and Radiance file formats, and improved bounding using BSP trees.

In July 2006, Intel corporation started using the beta version to demonstrate their new dual-core Conroe processor due to the efficiency of the 3.7 beta's SMP implementation.[5]

Primitives

Some dice rendered in POV-Ray. Constructive solid geometry, refraction and focal blur are demonstrated.
The Five Pov-Ray primitives in one scene

POV-Ray, in addition to standard geometric shapes like tori, spheres and heightfields, supports mathematically defined primitives such as the isosurface (a finite approximation of an arbitrary function), the polynomial primitive (an infinite object defined by a 15th order or lower polynomial), the julia fractal (a 3-dimensional slice of a 4-dimensional fractal), the superquadratic ellipsoid (intermediate between a sphere and a cube), and the parametric primitive (using equations that represent its surface, rather than its interior).

POV-Ray internally represents objects using their mathematical definitions; all POV-Ray primitive objects can be described by mathematical functions. This is different from many 3D computer modeling packages, which typically use triangle meshes to compose all objects.

This fact provides POV-Ray with several advantages over other rendering / modeling systems. POV-Ray primitives are more accurate than their polygonal counterparts. Objects that can be described in terms of spheres, planar surfaces, cylinders, tori and the like are perfectly smooth and mathematically accurate in POV-Ray renderings, whereas polygonal artifacts may be visible in mesh-based modeling software. POV-Ray primitives are also simpler to define than most of their polygonal counterparts. In POV-Ray, a sphere is described simply by its center and radius; in a mesh-based environment, a sphere must be described by a multitude of small polygons.

On the other hand, primitive-, script-based modeling is not always a practical method to create objects such as realistic characters or complex man-made artifacts like cars. Those objects have to be created in mesh-based modeling applications such as Wings 3D or Blender and then converted to POV-Ray's own mesh format.

Examples of the Scene Description Language

The following is an example of the scene description language used by POV-Ray to describe a scene to render. It demonstrates use of the camera, lights, a simple box shape and the transforming effects of scaling, rotation and translation.

POV-Ray image output based on the script to the left
 #version 3.6;
 #include "colors.inc"
 global_settings { assumed_gamma 1.0 }
 
 background   { color rgb <0.25, 0.25, 0.25> }
 
 camera       { location  <0.0, 0.5, -4.0>
                direction 1.5*z
                right     x*image_width/image_height
                look_at   <0.0, 0.0, 0.0> }
 
 light_source { <0, 0, 0>
                color rgb <1, 1, 1>
                translate <-5, 5, -5> }
 
 light_source { <0, 0, 0>        
                color rgb <0.25, 0.25, 0.25>
                translate <6, -6, -6> }
 
 box          { <-0.5, -0.5, -0.5>
                <0.5, 0.5, 0.5>
                texture { pigment { color Red }
                          finish  { specular 0.6 }
                          normal  { agate 0.25 scale 1/2 } }	
                rotate <45,46,47> }

The following script fragment shows the use of variable declaration, assignment, comparison and the while loop construct:

POV-Ray image output based on the script to the left
 #declare the_angle = 0;
 
 #while (the_angle <= 360)
 	box {   <-0.5, -0.5, -0.5>
 		<0.5, 0.5, 0.5>
                texture { pigment { color Red }
                          finish  { specular 0.6 }
                          normal  { agate 0.25 scale 1/2 } }
 		rotate the_angle }
 	#declare the_angle = the_angle + 45;
 #end

Development and maintenance

Official modifications to the POV-Ray source tree are done and/or approved by the POV-Team. Most patch submission and/or bug reporting is done in the POV-Ray newsgroups on the povray.org news server. Since POV-Ray's source is available there are unofficial forks and patched versions of POV-Ray available from third parties; however, these are not officially supported by the POV-Team.

Official POV-Ray versions currently do not support shader plug-ins[6]. Some features, like radiosity and splines are still in development and may be subject to syntactical change.

Platform Support

POV-Ray is distributed in compiled format for Macintosh, Windows and Linux. Support for Intel Macs is not available in the Macintosh version, but since Mac OS is a version of Unix the Linux version can be compiled on it. POV-Ray also could be ported to any platform which has compatible C++ compiler.

People with Intel Macs can use MegaPOV though, as that is compiled as Universal Binary.

Licensing

POV-Ray is distributed under the POV-Ray License, which permits free distribution of the program source code and binaries, but restricts commercial distribution and the creation of derivative works other than fully functional versions of POV-Ray.

Although the source code is available for modification, due to specific restrictions, it is not open source according to the OSI definition of the term. One of the reasons that POV-Ray is not licensed under the free software GNU General Public License (GPL), or other open source licenses, is that POV-Ray was developed before the GPL-style licenses became widely used; the developers wrote their own license for the release of POV-Ray, and contributors to the software have worked under the assumption that their contributions would be licensed under the POV-Ray License.

The whereabouts of some of the contributors to the source code are unknown, and therefore the license cannot be changed, since the permission of all contributors would be required.

A complete rewrite of POV-Ray ("POV-Ray 4.0") is currently under discussion, which would use a more liberal license, most likely GPL v3[7].

See also

  • YafRay (Yet Another Free Raytracer)
  • Kerkythea Free ray tracing program with enhanced Sketchup compatibility
  • Sunflow an open source rendering system for photo-realistic image synthesis written in Java
  • Blender (software) a free and open-source software program for 3D modeling, animation, and rendering

References

  1. ^ http://www.povray.org/documentation/view/3.6.0/7/
  2. ^ http://www.oyonale.com/iss.php
  3. ^ http://twit.tv/floss24
  4. ^ See the SCC3 page at http://local.wasp.uwa.edu.au/~pbourke/modelling_rendering/scc3/final/ for an example of complete POV-Ray images made with no more than 256 bytes of SDL, several of which use recursion and macros to compress the code
  5. ^ http://www.intel.com/performance/desktop/extreme/high_end_rendering.htm
  6. ^ for such an implementation, see e.g. http://www.aetec.ee/fv/vkhomep.nsf/pages/povman2
  7. ^ Cason, Chris (2007-09-06). "Re: Status of Moray? (The answer is about POVRay)". Retrieved 2007-12-09. Now that process has been completed, as a group we feel the GPL3 is the way to go and have informally decided that 4.0 will be GPL3-licensed. {{cite web}}: Check date values in: |date= (help)

External links

Official

Other POV-Ray resources

Collective galleries

Notable POV-Ray artists

  • Robert W. McGregor - A POVCOMP, IRTC, and TC-RTC winner, his POV-Ray work has won over 20 visual arts awards.
  • Gilles Tran - Well known long-time POV-Ray artist, who is also a multiple winner of the IRTC. His website contains hundreds of POV-Ray images, "behind the scenes" descriptions, tools (tree, grass, snow, clouds macros) and objects (CSG and mesh).
  • Jaime Vives Piqueres - A multiple winner of the Internet Ray-Tracing Competition. His website also contains the Lightsys macro, the Project Tierra landscape generator and other utilities.
  • Christoph Hormann - A developer and member of the POV-Team; see in particular his "Landscape of the week" project. Many nice renders and useful utilities in there as well, like the ISOcsg and ISOwood macro libs.
  • René Bui - POV-Ray art inspired by contemporary artists such as Hockney and Duchamp.
  • Jim Charter - African masks, shoes and still life.
  • Rune Skovbo Johansen - A few images and animations, but mostly various include files for texturing and animation.
  • Ben Weston AKA Tekno Frannansa or Tek - A technical and minimalist povray hand-coder, much like Jaime. Multiple winner of the Short Code Contest.
  • Tor Olav Kristensen - Another math-inspired POVer.
  • Andrea Loehmüller + Friedrich A. Loehmüller - An extensive gallery of mathematical POV-Ray art. Also includes tutorials.
  • Tim Nikias - Galleries, a few animations, tutorials and various include files. Every image features a more or less detailed description of origin, techniques and explanations to supply insight and inspiration.
  • Gena Obukhov - Artist and technician, an early POV-Ray humanist.
  • Tom Aust - A painter, a sculptor and a 3D artist who uses POV-Ray for architectural and interior renderings.
  • L.J. Altvater - Surrealism with a mix of childhood purity and dream-like weirdness.
  • Christophe Bouffartigue - POV-Ray images, patches and include files.
  • François Dispot - The author of Arabeske, an online utility for creating repetitive patterns.
  • Douglas Eichenberg - Surrealism reminiscent of Yves Tanguy.
  • Mick Hazelgrove - Creator of IRTC-winning The Preacher.
  • Tsutomu Higo - Tsutomu has a training in traditional painting and a love for mathematics, and he combines both in his POV-Ray work.
  • Pete Trbovich - A variety artist. Uses exclusively free/open source software including POV-Ray, Blender, The GIMP, and Inkscape. Offers free wallpapers and graphics to developers and users of Free and Open Source Software.
  • Veijo Vilva - Music and surrealism. Veijo had a solo exhibition of his works in an art gallery in Helsinki in 2004.

Unofficial patches

Related tools

  • QTPov Editor
  • Moray, an interactive wireframe modeller for the PC platform, supporting POV-Ray.
  • KPovModeler for KDE.
  • PoseRay, a utility that allows POV-Ray to use 3D models in DXF, OBJ, LWO, 3DS, VRML and RAW formats. It can also import Poser and DAZ|Studio scenes into POV-Ray. Other features include surface subdivision and 3D preview of the scene before it is rendered.
  • SMPOV, an add-on for POV-Ray and MegaPOV for distributed network rendering or local SMP-rendering.
  • POV-Anywhere, a set of tools for distributing the render of POV-Ray images to several computers.
  • POV-Tree, a tree generator.
  • TOMTREE, Tom Aust's tree generator.
  • TrueVision, a 3D modeller for Gnome.
  • Bishop3D, an interactive modeling and animation tool for Windows. It can import and export POV-Ray scene files.

Scientific tools

  • AISMIG Visualize molecule structures on the web - can export POV files
  • PyMOL is an open-source molecular visualization system, which can use POV-Ray to render the molecular structures