Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkUnstructuredGridBunykRayCastFunction Class Reference

#include <vtkUnstructuredGridBunykRayCastFunction.h>

Inheritance diagram for vtkUnstructuredGridBunykRayCastFunction:

Inheritance graph
[legend]
Collaboration diagram for vtkUnstructuredGridBunykRayCastFunction:

Collaboration graph
[legend]
List of all members.

Detailed Description

a superclass for ray casting functions

Date
2003/12/30 18:56:19
Revision
1.5

vtkUnstructuredGridBunykRayCastFunction is a concrete implementation of a ray cast function for unstructured grid data. This class was based on the paper "Simple, Fast, Robust Ray Casting of Irregular Grids" by Paul Bunyk, Arie Kaufmna, and Claudio Silva. This method is quite memory intensive (with extra explicit copies of the data) and therefore should not be used for very large data. This method assumes that the input data is composed entirely of tetras - use vtkDataSetTriangleFilter before setting the input on the mapper.

The basic idea of this method is as follows:

1) Enumerate the triangles. At each triangle have space for some information that will be used during rendering. This includes which tetra the triangles belong to, the plane equation and the Barycentric coefficients.

2) Keep a reference to all four triangles for each tetra.

3) At the beginning of each render, do the precomputation. This includes creating an array of transformed points (in view coordinates) and computing the view dependent info per triangle (plane equations and barycentric coords in view space)

4) Find all front facing boundary triangles (a triangle is on the boundary if it belongs to only one tetra). For each triangle, find all pixels in the image that intersect the triangle, and add this to the sorted (by depth) intersection list at each pixel.

5) For each ray cast, traverse the intersection list. At each intersection, accumulate opacity and color contribution per tetra along the ray until you reach an exiting triangle (on the boundary).

See also:
vtkUnstructuredGridVolumeRayCastMapper

Definition at line 82 of file vtkUnstructuredGridBunykRayCastFunction.h.

Public Types

typedef vtkUnstructuredGridVolumeRayCastFunction Superclass

Public Member Functions

virtual const char * GetClassName ()
virtual int IsA (const char *type)
virtual void PrintSelf (ostream &os, vtkIndent indent)
virtual void Initialize (vtkRenderer *ren, vtkVolume *vol)
virtual void Finalize ()
virtual void CastRay (int x, int y, double bounds[2], float color[4])
double * GetPoints ()
Triangle ** GetTetraTriangles ()
IntersectionGetIntersectionList (int x, int y)
double ** GetColorTable ()
double * GetColorTableShift ()
double * GetColorTableScale ()
int InTriangle (double x, double y, Triangle *triPtr)
virtual vtkMatrix4x4GetViewToWorldMatrix ()
virtual int * GetImageOrigin ()
virtual void GetImageOrigin (int data[2])
virtual int * GetImageViewportSize ()
virtual void GetImageViewportSize (int data[2])

Static Public Member Functions

vtkUnstructuredGridBunykRayCastFunctionNew ()
int IsTypeOf (const char *type)
vtkUnstructuredGridBunykRayCastFunctionSafeDownCast (vtkObject *o)

Protected Member Functions

 vtkUnstructuredGridBunykRayCastFunction ()
 ~vtkUnstructuredGridBunykRayCastFunction ()
int IsTriangleFrontFacing (Triangle *triPtr, int tetraIndex)
void ClearImage ()
void * NewIntersection ()
int CheckValidity (vtkRenderer *ren, vtkVolume *vol)
void TransformPoints ()
void UpdateTriangleList ()
void ComputeViewDependentInfo ()
void ComputePixelIntersections ()
void UpdateColorTable ()
void SetNumberOfComponents (int num)

Protected Attributes

vtkRendererRenderer
vtkVolumeVolume
vtkUnstructuredGridVolumeRayCastMapperMapper
void * Scalars
int ScalarType
int NumberOfComponents
int Valid
int NumberOfPoints
double * Points
vtkMatrix4x4ViewToWorldMatrix
Intersection ** Image
int ImageSize [2]
int ImageOrigin [2]
int ImageViewportSize [2]
double ** ColorTable
int * ColorTableSize
double * ColorTableShift
double * ColorTableScale
vtkColorTransferFunction ** SavedRGBFunction
vtkPiecewiseFunction ** SavedGrayFunction
vtkPiecewiseFunction ** SavedScalarOpacityFunction
int * SavedColorChannels
double * SavedScalarOpacityDistance
double SavedSampleDistance
int SavedBlendMode
int SavedNumberOfComponents
vtkUnstructuredGridSavedParametersInput
vtkTimeStamp SavedParametersMTime
vtkUnstructuredGridSavedTriangleListInput
vtkTimeStamp SavedTriangleListMTime
double SampleDistance
Triangle ** TetraTriangles
TriangleTriangleList
IntersectionIntersectionBuffer [VTK_BUNYKRCF_MAX_ARRAYS]
int IntersectionBufferCount [VTK_BUNYKRCF_MAX_ARRAYS]


Member Typedef Documentation

typedef vtkUnstructuredGridVolumeRayCastFunction vtkUnstructuredGridBunykRayCastFunction::Superclass
 

Reimplemented from vtkUnstructuredGridVolumeRayCastFunction.

Definition at line 86 of file vtkUnstructuredGridBunykRayCastFunction.h.


Constructor & Destructor Documentation

vtkUnstructuredGridBunykRayCastFunction::vtkUnstructuredGridBunykRayCastFunction  )  [protected]
 

vtkUnstructuredGridBunykRayCastFunction::~vtkUnstructuredGridBunykRayCastFunction  )  [protected]
 


Member Function Documentation

vtkUnstructuredGridBunykRayCastFunction* vtkUnstructuredGridBunykRayCastFunction::New  )  [static]
 

Create an object with Debug turned off, modified time initialized to zero, and reference counting on.

Reimplemented from vtkObject.

virtual const char* vtkUnstructuredGridBunykRayCastFunction::GetClassName  )  [virtual]
 

Reimplemented from vtkUnstructuredGridVolumeRayCastFunction.

int vtkUnstructuredGridBunykRayCastFunction::IsTypeOf const char *  type  )  [static]
 

Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.

Reimplemented from vtkUnstructuredGridVolumeRayCastFunction.

virtual int vtkUnstructuredGridBunykRayCastFunction::IsA const char *  type  )  [virtual]
 

Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.

Reimplemented from vtkUnstructuredGridVolumeRayCastFunction.

vtkUnstructuredGridBunykRayCastFunction* vtkUnstructuredGridBunykRayCastFunction::SafeDownCast vtkObject o  )  [static]
 

Reimplemented from vtkUnstructuredGridVolumeRayCastFunction.

virtual void vtkUnstructuredGridBunykRayCastFunction::PrintSelf ostream &  os,
vtkIndent  indent
[virtual]
 

Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.

Reimplemented from vtkUnstructuredGridVolumeRayCastFunction.

virtual void vtkUnstructuredGridBunykRayCastFunction::Initialize vtkRenderer ren,
vtkVolume vol
[virtual]
 

Called by the ray cast mapper at the start of rendering

Implements vtkUnstructuredGridVolumeRayCastFunction.

virtual void vtkUnstructuredGridBunykRayCastFunction::Finalize  )  [virtual]
 

Called by the ray cast mapper at the end of rendering

Implements vtkUnstructuredGridVolumeRayCastFunction.

virtual void vtkUnstructuredGridBunykRayCastFunction::CastRay int  x,
int  y,
double  bounds[2],
float  color[4]
[virtual]
 

Called by the ray cast mapper once per ray

Implements vtkUnstructuredGridVolumeRayCastFunction.

int vtkUnstructuredGridBunykRayCastFunction::InTriangle double  x,
double  y,
Triangle triPtr
 

Is the point x, y, in the given triangle? Public for access from the templated function.

double* vtkUnstructuredGridBunykRayCastFunction::GetPoints  )  [inline]
 

Access to an internal structure for the templated method.

Definition at line 130 of file vtkUnstructuredGridBunykRayCastFunction.h.

virtual vtkMatrix4x4* vtkUnstructuredGridBunykRayCastFunction::GetViewToWorldMatrix  )  [virtual]
 

Access to an internal structure for the templated method.

virtual int* vtkUnstructuredGridBunykRayCastFunction::GetImageOrigin  )  [virtual]
 

Access to an internal structure for the templated method.

virtual void vtkUnstructuredGridBunykRayCastFunction::GetImageOrigin int  data[2]  )  [virtual]
 

Access to an internal structure for the templated method.

virtual int* vtkUnstructuredGridBunykRayCastFunction::GetImageViewportSize  )  [virtual]
 

Access to an internal structure for the templated method.

virtual void vtkUnstructuredGridBunykRayCastFunction::GetImageViewportSize int  data[2]  )  [virtual]
 

Access to an internal structure for the templated method.

Triangle** vtkUnstructuredGridBunykRayCastFunction::GetTetraTriangles  )  [inline]
 

Access to an internal structure for the templated method.

Definition at line 148 of file vtkUnstructuredGridBunykRayCastFunction.h.

Intersection* vtkUnstructuredGridBunykRayCastFunction::GetIntersectionList int  x,
int  y
[inline]
 

Access to an internal structure for the templated method.

Definition at line 151 of file vtkUnstructuredGridBunykRayCastFunction.h.

double** vtkUnstructuredGridBunykRayCastFunction::GetColorTable  )  [inline]
 

Definition at line 153 of file vtkUnstructuredGridBunykRayCastFunction.h.

double* vtkUnstructuredGridBunykRayCastFunction::GetColorTableShift  )  [inline]
 

Definition at line 154 of file vtkUnstructuredGridBunykRayCastFunction.h.

double* vtkUnstructuredGridBunykRayCastFunction::GetColorTableScale  )  [inline]
 

Definition at line 155 of file vtkUnstructuredGridBunykRayCastFunction.h.

int vtkUnstructuredGridBunykRayCastFunction::IsTriangleFrontFacing Triangle triPtr,
int  tetraIndex
[protected]
 

void vtkUnstructuredGridBunykRayCastFunction::ClearImage  )  [protected]
 

void* vtkUnstructuredGridBunykRayCastFunction::NewIntersection  )  [protected]
 

int vtkUnstructuredGridBunykRayCastFunction::CheckValidity vtkRenderer ren,
vtkVolume vol
[protected]
 

void vtkUnstructuredGridBunykRayCastFunction::TransformPoints  )  [protected]
 

void vtkUnstructuredGridBunykRayCastFunction::UpdateTriangleList  )  [protected]
 

void vtkUnstructuredGridBunykRayCastFunction::ComputeViewDependentInfo  )  [protected]
 

void vtkUnstructuredGridBunykRayCastFunction::ComputePixelIntersections  )  [protected]
 

void vtkUnstructuredGridBunykRayCastFunction::UpdateColorTable  )  [protected]
 

void vtkUnstructuredGridBunykRayCastFunction::SetNumberOfComponents int  num  )  [protected]
 


Member Data Documentation

vtkRenderer* vtkUnstructuredGridBunykRayCastFunction::Renderer [protected]
 

Definition at line 165 of file vtkUnstructuredGridBunykRayCastFunction.h.

vtkVolume* vtkUnstructuredGridBunykRayCastFunction::Volume [protected]
 

Definition at line 166 of file vtkUnstructuredGridBunykRayCastFunction.h.

vtkUnstructuredGridVolumeRayCastMapper* vtkUnstructuredGridBunykRayCastFunction::Mapper [protected]
 

Definition at line 167 of file vtkUnstructuredGridBunykRayCastFunction.h.

void* vtkUnstructuredGridBunykRayCastFunction::Scalars [protected]
 

Definition at line 168 of file vtkUnstructuredGridBunykRayCastFunction.h.

int vtkUnstructuredGridBunykRayCastFunction::ScalarType [protected]
 

Definition at line 169 of file vtkUnstructuredGridBunykRayCastFunction.h.

int vtkUnstructuredGridBunykRayCastFunction::NumberOfComponents [protected]
 

Definition at line 170 of file vtkUnstructuredGridBunykRayCastFunction.h.

int vtkUnstructuredGridBunykRayCastFunction::Valid [protected]
 

Definition at line 175 of file vtkUnstructuredGridBunykRayCastFunction.h.

int vtkUnstructuredGridBunykRayCastFunction::NumberOfPoints [protected]
 

Definition at line 178 of file vtkUnstructuredGridBunykRayCastFunction.h.

double* vtkUnstructuredGridBunykRayCastFunction::Points [protected]
 

Definition at line 179 of file vtkUnstructuredGridBunykRayCastFunction.h.

vtkMatrix4x4* vtkUnstructuredGridBunykRayCastFunction::ViewToWorldMatrix [protected]
 

Definition at line 183 of file vtkUnstructuredGridBunykRayCastFunction.h.

Intersection** vtkUnstructuredGridBunykRayCastFunction::Image [protected]
 

Definition at line 187 of file vtkUnstructuredGridBunykRayCastFunction.h.

int vtkUnstructuredGridBunykRayCastFunction::ImageSize[2] [protected]
 

Definition at line 191 of file vtkUnstructuredGridBunykRayCastFunction.h.

int vtkUnstructuredGridBunykRayCastFunction::ImageOrigin[2] [protected]
 

Definition at line 198 of file vtkUnstructuredGridBunykRayCastFunction.h.

int vtkUnstructuredGridBunykRayCastFunction::ImageViewportSize[2] [protected]
 

Definition at line 201 of file vtkUnstructuredGridBunykRayCastFunction.h.

double** vtkUnstructuredGridBunykRayCastFunction::ColorTable [protected]
 

Definition at line 205 of file vtkUnstructuredGridBunykRayCastFunction.h.

int* vtkUnstructuredGridBunykRayCastFunction::ColorTableSize [protected]
 

Definition at line 206 of file vtkUnstructuredGridBunykRayCastFunction.h.

double* vtkUnstructuredGridBunykRayCastFunction::ColorTableShift [protected]
 

Definition at line 211 of file vtkUnstructuredGridBunykRayCastFunction.h.

double* vtkUnstructuredGridBunykRayCastFunction::ColorTableScale [protected]
 

Definition at line 212 of file vtkUnstructuredGridBunykRayCastFunction.h.

vtkColorTransferFunction** vtkUnstructuredGridBunykRayCastFunction::SavedRGBFunction [protected]
 

Definition at line 218 of file vtkUnstructuredGridBunykRayCastFunction.h.

vtkPiecewiseFunction** vtkUnstructuredGridBunykRayCastFunction::SavedGrayFunction [protected]
 

Definition at line 219 of file vtkUnstructuredGridBunykRayCastFunction.h.

vtkPiecewiseFunction** vtkUnstructuredGridBunykRayCastFunction::SavedScalarOpacityFunction [protected]
 

Definition at line 220 of file vtkUnstructuredGridBunykRayCastFunction.h.

int* vtkUnstructuredGridBunykRayCastFunction::SavedColorChannels [protected]
 

Definition at line 221 of file vtkUnstructuredGridBunykRayCastFunction.h.

double* vtkUnstructuredGridBunykRayCastFunction::SavedScalarOpacityDistance [protected]
 

Definition at line 222 of file vtkUnstructuredGridBunykRayCastFunction.h.

double vtkUnstructuredGridBunykRayCastFunction::SavedSampleDistance [protected]
 

Definition at line 223 of file vtkUnstructuredGridBunykRayCastFunction.h.

int vtkUnstructuredGridBunykRayCastFunction::SavedBlendMode [protected]
 

Definition at line 224 of file vtkUnstructuredGridBunykRayCastFunction.h.

int vtkUnstructuredGridBunykRayCastFunction::SavedNumberOfComponents [protected]
 

Definition at line 225 of file vtkUnstructuredGridBunykRayCastFunction.h.

vtkUnstructuredGrid* vtkUnstructuredGridBunykRayCastFunction::SavedParametersInput [protected]
 

Definition at line 226 of file vtkUnstructuredGridBunykRayCastFunction.h.

vtkTimeStamp vtkUnstructuredGridBunykRayCastFunction::SavedParametersMTime [protected]
 

Definition at line 227 of file vtkUnstructuredGridBunykRayCastFunction.h.

vtkUnstructuredGrid* vtkUnstructuredGridBunykRayCastFunction::SavedTriangleListInput [protected]
 

Definition at line 231 of file vtkUnstructuredGridBunykRayCastFunction.h.

vtkTimeStamp vtkUnstructuredGridBunykRayCastFunction::SavedTriangleListMTime [protected]
 

Definition at line 232 of file vtkUnstructuredGridBunykRayCastFunction.h.

double vtkUnstructuredGridBunykRayCastFunction::SampleDistance [protected]
 

Definition at line 236 of file vtkUnstructuredGridBunykRayCastFunction.h.

Triangle** vtkUnstructuredGridBunykRayCastFunction::TetraTriangles [protected]
 

Definition at line 245 of file vtkUnstructuredGridBunykRayCastFunction.h.

Triangle* vtkUnstructuredGridBunykRayCastFunction::TriangleList [protected]
 

Definition at line 246 of file vtkUnstructuredGridBunykRayCastFunction.h.

Intersection* vtkUnstructuredGridBunykRayCastFunction::IntersectionBuffer[VTK_BUNYKRCF_MAX_ARRAYS] [protected]
 

Definition at line 262 of file vtkUnstructuredGridBunykRayCastFunction.h.

int vtkUnstructuredGridBunykRayCastFunction::IntersectionBufferCount[VTK_BUNYKRCF_MAX_ARRAYS] [protected]
 

Definition at line 263 of file vtkUnstructuredGridBunykRayCastFunction.h.


The documentation for this class was generated from the following file: