Modifier and Type | Field and Description |
---|---|
java.util.Vector<Point3DInt> |
Point3DIntList.points
The vector of points
|
Modifier and Type | Method and Description |
---|---|
Point3DInt |
VoxelArray.farthestSetPoint(LineSegment3DFloat line)
Returns the farthest set point from the specified (infinite) line.
|
Point3DInt |
VoxelArray.getMaximumSetPoints()
Find the maximum set pixels on the (x,y,z) axes in this VoxelArray and
returns a Point3DInt containing their coordinates.
|
Point3DInt |
VoxelArray.getMinimumSetPoints()
Find the minimum set pixels on the (x,y,z) axes in this VoxelArray and
returns a Point3DInt containing their coordinates.
|
Point3DInt |
Point3DIntList.getPoint(int index)
Gets the specified point.
|
Modifier and Type | Method and Description |
---|---|
void |
Point3DIntList.addPoint(Point3DInt point)
Adds a point to this shape.
|
private boolean |
VoxelArray.getNoCheck(Point3DInt p)
Returns the value of the point without doing any boundary
checks.
|
boolean |
VoxelArray.isInRange(Point3DInt p)
This method checks a point to see if it is within a valid range for
this VoxelArray.
|
static Point3DIntList |
LinePoints.line3DInt(Point3DInt p1,
Point3DInt p2)
Creates a vector of Point3DInt consisting of the integer points on a
line between p1 and p2.
|
boolean |
VoxelArray.sampleBoolean(Point3DInt p)
Sample the field at the specified 3-dimensional point and return its
value as true or false.
|
void |
VoxelArray.set(Point3DInt p,
boolean value)
Sets the voxel in the specific coordinate to the specific value.
|
private void |
VoxelArray.setNoCheck(Point3DInt p,
boolean value)
Sets the specific coordinate to the specific value.
|
Constructor and Description |
---|
Point3DDouble(Point3DInt orig)
Construct a Point3DDouble from a Point3DInt
|
Point3DFloat(Point3DInt orig)
Construct a Point3DFloat from a Point3DInt
|