Modifier and Type | Class and Description |
---|---|
class |
VoxelArray
This is a 3-D Voxel array which can be used to generate 3-D graphics.
|
Modifier and Type | Method and Description |
---|---|
static java.util.Vector<Triangle3DFloat> |
MarchingCubes.triangulateHull(float xMin,
float xMax,
int xSteps,
float yMin,
float yMax,
int ySteps,
float zMin,
float zMax,
int zSteps,
Field3DFloat field,
float targetValue)
triangulateHull iterates over a Field3DFloat and returns a vector
of triangles that represent its external hull, with the external hull
being defined as the points that are greater than or equal to
targetValue.
|