Interface VolumeValuesBDType
- All Superinterfaces:
VolumeSizeValuesBDType
- All Known Subinterfaces:
PVolumeBDType<S>,VolumeBDType
public interface VolumeValuesBDType extends VolumeSizeValuesBDType
A volume with BigDecimal 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 Summary
Modifier and Type Method Description java.math.BigDecimalmaximumX()java.math.BigDecimalmaximumY()java.math.BigDecimalmaximumZ()java.math.BigDecimalminimumX()java.math.BigDecimalminimumY()java.math.BigDecimalminimumZ()default java.math.BigDecimalsizeX()default java.math.BigDecimalsizeY()default java.math.BigDecimalsizeZ()
-
Method Details
-
minimumX
@Parameter(order=0) java.math.BigDecimal minimumX()- Returns:
- The value on the X axis of the minimum edge of the box (inclusive)
-
maximumX
@Parameter(order=1) java.math.BigDecimal maximumX()- Returns:
- The value on the X axis of the maximum edge of the box (exclusive)
-
minimumY
@Parameter(order=2) java.math.BigDecimal minimumY()- Returns:
- The value on the Y axis of the minimum edge of the box (inclusive)
-
maximumY
@Parameter(order=3) java.math.BigDecimal maximumY()- Returns:
- The value on the Y axis of the maximum edge of the box (exclusive)
-
minimumZ
@Parameter(order=4) java.math.BigDecimal minimumZ()- Returns:
- The value on the Z axis of the minimum edge of the box (inclusive)
-
maximumZ
@Parameter(order=5) java.math.BigDecimal maximumZ()- Returns:
- The value on the Z axis of the maximum edge of the box (exclusive)
-
sizeX
default java.math.BigDecimal sizeX()- Specified by:
sizeXin interfaceVolumeSizeValuesBDType- Returns:
- The size of the area on the X axis
-
sizeY
default java.math.BigDecimal sizeY()- Specified by:
sizeYin interfaceVolumeSizeValuesBDType- Returns:
- The size of the area on the Y axis
-
sizeZ
default java.math.BigDecimal sizeZ()- Specified by:
sizeZin interfaceVolumeSizeValuesBDType- Returns:
- The size of the area on the Z axis
-