Interface VolumeValuesDType
- All Superinterfaces:
VolumeSizeValuesDType
- All Known Subinterfaces:
PVolumeDType<S>,VolumeDType
public interface VolumeValuesDType extends VolumeSizeValuesDType
A volume with double coordinates.
The coordinates of the volume are given in half-closed form. That
is, minimumX() refers to the minimum inclusive value on the X
axis, and maximumX() refers to the maximum exclusive value on
the X axis. Likewise for the Y and Z axes.
-
Method Details
-
minimumX
@Parameter(order=0) double minimumX()- Returns:
- The value on the X axis of the minimum edge of the box (inclusive)
-
maximumX
@Parameter(order=1) double maximumX()- Returns:
- The value on the X axis of the maximum edge of the box (exclusive)
-
minimumY
@Parameter(order=2) double minimumY()- Returns:
- The value on the Y axis of the minimum edge of the box (inclusive)
-
maximumY
@Parameter(order=3) double maximumY()- Returns:
- The value on the Y axis of the maximum edge of the box (exclusive)
-
minimumZ
@Parameter(order=4) double minimumZ()- Returns:
- The value on the Z axis of the minimum edge of the box (inclusive)
-
maximumZ
@Parameter(order=5) double maximumZ()- Returns:
- The value on the Z axis of the maximum edge of the box (exclusive)
-
sizeX
default double sizeX()- Specified by:
sizeXin interfaceVolumeSizeValuesDType- Returns:
- The size of the area on the X axis
-
sizeY
default double sizeY()- Specified by:
sizeYin interfaceVolumeSizeValuesDType- Returns:
- The size of the area on the Y axis
-
sizeZ
default double sizeZ()- Specified by:
sizeZin interfaceVolumeSizeValuesDType- Returns:
- The size of the area on the Z axis
-