Interface BoundingBox

    • Method Detail

      • getMinX

        double getMinX()
        Gets the minimum ordinate along the first axis, equivalent to getMinimum(0).
      • getMaxX

        double getMaxX()
        Gets the maximum ordinate along the first axis, equivalent to getMaximum(0).
      • getMinY

        double getMinY()
        Gets the minimum ordinate along the second axis, equivalent to getMinimum(1).
      • getMaxY

        double getMaxY()
        Gets the maximum ordinate along the second axis, equivalent to getMaximum(1).
      • getWidth

        double getWidth()
        Gets the width of the bounding box, i.e. getMaxX() - getMinX().
      • getHeight

        double getHeight()
        Gets the height of the bounding box, i.e. getMaxY() - getMinY().
      • getLowerCorner

        HorizontalPosition getLowerCorner()
        Gets the position (getMinX(), getMinY())
      • getUpperCorner

        HorizontalPosition getUpperCorner()
        Gets the position (getMaxX(), getMaxY())