Skip to content

vtkVolumeRayCastSpaceLeapingImageFilter, block mode indexing fix

Vincent Chen requested to merge applekey/vtk:SpaceLeapingImageFilter into master

*(tmpPtr++) = 0xffff; // Min Scalar *(tmpPtr++) = 0; // Max Scalar *(tmpPtr++) = 0; // Max Gradient Magnitude and

The increments never consider that there are 3 elements per element. It works currently under slab mode because firstly, it slices along Z direction, so the z continuous increment is 0 and secondly, it traverses lengthwise so the y continuous increment is also 0.

Merge request reports