Interface Point2Wrapper<P>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      P getPoint()
      Getter for the wrapped point object.
      double getX()
      Getter for the x-coordinate
      double getY()
      Getter for the y-coordinate
      void setPoint​(P point)
      Setter for the wrapped point object
      void setX​(double x)
      Setter for the x-coordinate
      void setY​(double y)
      Setter for the y-coordinate
    • Method Detail

      • getPoint

        P getPoint()
        Getter for the wrapped point object.
        Returns:
        Returns the wrapped point object.
      • setPoint

        void setPoint​(P point)
        Setter for the wrapped point object
        Parameters:
        point - AbstractPoint2Wrapper which should be wrapped.
      • getX

        double getX()
        Getter for the x-coordinate
        Returns:
        Returns the value of the x-coordinate.
      • setX

        void setX​(double x)
        Setter for the x-coordinate
        Parameters:
        x - value which should be assigned to the x-coordinate
      • getY

        double getY()
        Getter for the y-coordinate
        Returns:
        Returns the value of the y-coordinate.
      • setY

        void setY​(double y)
        Setter for the y-coordinate
        Parameters:
        y - value which should be assigned to the y-coordinate