#include <stddef.h>
Go to the source code of this file.
Compounds | |
class | VolumetricData |
Volumetric data class for potential maps, electron density maps, etc. More... | |
Defines | |
#define | VOXEL_GRADIENT_FAST_IDX(gradientmap, index, newgrad) |
fast but unsafe macro for querying volume gradients. More... | |
#define | VOXEL_GRADIENT_FAST(gradientmap, planesz, rowsz, x, y, z, newgrad) |
fast but unsafe macro for querying volume gradients. More... |
Definition in file VolumetricData.h.
|
Value: { ptrdiff_t index = ((z)*(planesz) + (y)*(rowsz) + (x)) * 3L; \ (newgrad)[0] = (gradientmap)[index ]; \ (newgrad)[1] = (gradientmap)[index + 1]; \ (newgrad)[2] = (gradientmap)[index + 2]; \ }
Definition at line 328 of file VolumetricData.h. Referenced by IsoSurface::DoCellGeneral, and IsoSurface::DoGridPosNorms. |
|
Value: { (newgrad)[0] = (gradientmap)[index ]; \ (newgrad)[1] = (gradientmap)[index + 1]; \ (newgrad)[2] = (gradientmap)[index + 2]; \ }
Definition at line 321 of file VolumetricData.h. |