source: GTP/trunk/App/Demos/Illum/PathMap/doc/html/annotated.html @ 896

Revision 896, 5.8 KB checked in by szirmay, 18 years ago (diff)
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
3<title>Path Map Module: Class List</title>
4<link href="doxygen.css" rel="stylesheet" type="text/css">
5<link href="tabs.css" rel="stylesheet" type="text/css">
6</head><body>
7<!-- Generated by Doxygen 1.4.6-NO -->
8<div class="tabs">
9  <ul>
10    <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
11    <li id="current"><a href="annotated.html"><span>Classes</span></a></li>
12  </ul></div>
13<div class="tabs">
14  <ul>
15    <li id="current"><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
16    <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
17    <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li>
18  </ul></div>
19<h1>Path Map Module Class List</h1>Here are the classes, structs, unions and interfaces with brief descriptions:<table>
20  <tr><td class="indexkey"><a class="el" href="class_hit_rec.html">HitRec</a></td><td class="indexvalue">Result record for a ray-casting operation </td></tr>
21  <tr><td class="indexkey"><a class="el" href="class_intersectable.html">Intersectable</a></td><td class="indexvalue">Base interface for all object types that can be ray-traced. The most important implementing classes are <a class="el" href="class_triangle_mesh.html">TriangleMesh</a> and Transformed (usually referring to a <a class="el" href="class_triangle_mesh.html">TriangleMesh</a>). A <a class="el" href="class_k_d_tree.html">KDTree</a> will build a hierarchy of Intersectables. TraingleMesh::Patch is also an implementing class, and a <a class="el" href="class_triangle_mesh.html">TriangleMesh</a> contains a <a class="el" href="class_k_d_tree.html">KDTree</a> of patches </td></tr>
22  <tr><td class="indexkey"><a class="el" href="class_k_d_tree.html">KDTree</a></td><td class="indexvalue"></td></tr>
23  <tr><td class="indexkey"><a class="el" href="struct_k_d_tree_1_1_traverse_stack.html">KDTree::TraverseStack</a></td><td class="indexvalue">Stack to implement the recursive traversal algorithm </td></tr>
24  <tr><td class="indexkey"><a class="el" href="class_material.html">Material</a></td><td class="indexvalue"><a class="el" href="class_material.html">Material</a> class for ray tracing. A material that can be assigned to Intersectables. Implements [lambert + phong + ideal reflection + refraction + emission] model. Descendants may override this by texturing (<a class="el" href="class_textured_material.html">TexturedMaterial</a>) or procedural texturing </td></tr>
25  <tr><td class="indexkey"><a class="el" href="class_path_map_effect.html">PathMapEffect</a></td><td class="indexvalue">Main class for the PRM computation and usage application. This class encapsulates all resources needed for computing PRMs and using them in the final rendering. PRM resources may be generated, saved to files, or restored </td></tr>
26  <tr><td class="indexkey"><a class="el" href="class_path_map_effect_1_1_method.html">PathMapEffect::Method</a></td><td class="indexvalue">Clever enum for supported final rendering methods </td></tr>
27  <tr><td class="indexkey"><a class="el" href="struct_path_map_effect_1_1_render_mesh.html">PathMapEffect::RenderMesh</a></td><td class="indexvalue">Struct containing all mesh related data. Will be filled from X files in <a class="el" href="class_path_map_effect.html">PathMapEffect</a> constructor </td></tr>
28  <tr><td class="indexkey"><a class="el" href="class_radion.html">Radion</a></td><td class="indexvalue">Class that describes a virtual light source on a diffuse surface </td></tr>
29  <tr><td class="indexkey"><a class="el" href="class_ray.html">Ray</a></td><td class="indexvalue">Class that describes a ray to be traced </td></tr>
30  <tr><td class="indexkey"><a class="el" href="class_textured_material.html">TexturedMaterial</a></td><td class="indexvalue">A <a class="el" href="class_material.html">Material</a> that can be assigned to an <a class="el" href="class_intersectable.html">Intersectable</a> (typically a <a class="el" href="class_triangle_mesh.html">TriangleMesh</a>), and contains a texture. The texture must be square (equal height and width), 32bpp, BGRA </td></tr>
31  <tr><td class="indexkey"><a class="el" href="class_transformation.html">Transformation</a></td><td class="indexvalue">3D linear transformation + translation class. Used by the ray-tracing system to store entity modelling transformations. Class Transformed is an Intersecable that refers to an <a class="el" href="class_intersectable.html">Intersectable</a> and contains a <a class="el" href="class_transformation.html">Transformation</a> </td></tr>
32  <tr><td class="indexkey"><a class="el" href="class_triangle_mesh.html">TriangleMesh</a></td><td class="indexvalue">Ray-tracable representaion of a mesh <a class="el" href="class_triangle_mesh.html">TriangleMesh</a> encapsulates a kd-tree containing triangles. It can be constructed using the vertex and index buffers of a mesh. Ray-intersection and random surface sampling are supported </td></tr>
33  <tr><td class="indexkey"><a class="el" href="class_triangle_mesh_1_1_patch.html">TriangleMesh::Patch</a></td><td class="indexvalue">A triangle with ray-intersection </td></tr>
34  <tr><td class="indexkey"><a class="el" href="class_vector.html">Vector</a></td><td class="indexvalue">3D vector class with overloaded operators. Used for positions, directions, colors, etc. It has the same memory layout as D3DXVECTOR3 </td></tr>
35  <tr><td class="indexkey"><a class="el" href="class_wood_material.html">WoodMaterial</a></td><td class="indexvalue">A procedural material </td></tr>
36</table>
37<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 27 17:17:41 2006 for Path Map Module by&nbsp;
38<a href="http://www.doxygen.org/index.html">
39<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6-NO </small></address>
40</body>
41</html>
Note: See TracBrowser for help on using the repository browser.