#include "vtkRenderingVolumeModule.h"
#include "vtkVolumeMapper.h"
#include "vtkVolumeRayCastFunction.h"
Go to the source code of this file.
|
#define | vtkTrilinFuncMacro(v, x, y, z, a, b, c, d, e, f, g, h) |
|
#define vtkTrilinFuncMacro |
( |
|
v, |
|
|
|
x, |
|
|
|
y, |
|
|
|
z, |
|
|
|
a, |
|
|
|
b, |
|
|
|
c, |
|
|
|
d, |
|
|
|
e, |
|
|
|
f, |
|
|
|
g, |
|
|
|
h |
|
) |
| |
Value:t00 = a + (x)*(b-a); \
t01 = c + (x)*(d-c); \
t10 = e + (x)*(f-e); \
t11 = g + (x)*(h-g); \
t0 = t00 + (y)*(t01-t00); \
t1 = t10 + (y)*(t11-t10); \
v = t0 + (z)*(t1-t0);
Definition at line 59 of file vtkVolumeRayCastMapper.h.