Interface VolumeValuesIType

All Superinterfaces:
VolumeSizeValuesIType
All Known Subinterfaces:
PVolumeIType<S>, VolumeIType
All Known Implementing Classes:
PVolumeI, VolumeI

public interface VolumeValuesIType extends VolumeSizeValuesIType

A volume with int 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) int minimumX()
      Returns:
      The value on the X axis of the minimum edge of the box (inclusive)
    • maximumX

      @Parameter(order=1) int maximumX()
      Returns:
      The value on the X axis of the maximum edge of the box (exclusive)
    • minimumY

      @Parameter(order=2) int minimumY()
      Returns:
      The value on the Y axis of the minimum edge of the box (inclusive)
    • maximumY

      @Parameter(order=3) int maximumY()
      Returns:
      The value on the Y axis of the maximum edge of the box (exclusive)
    • minimumZ

      @Parameter(order=4) int minimumZ()
      Returns:
      The value on the Z axis of the minimum edge of the box (inclusive)
    • maximumZ

      @Parameter(order=5) int maximumZ()
      Returns:
      The value on the Z axis of the maximum edge of the box (exclusive)
    • sizeX

      default int sizeX()
      Specified by:
      sizeX in interface VolumeSizeValuesIType
      Returns:
      The size of the area on the X axis
    • sizeY

      default int sizeY()
      Specified by:
      sizeY in interface VolumeSizeValuesIType
      Returns:
      The size of the area on the Y axis
    • sizeZ

      default int sizeZ()
      Specified by:
      sizeZ in interface VolumeSizeValuesIType
      Returns:
      The size of the area on the Z axis