Interface Point3Wrapper<P>

  • Type Parameters:
    P - Target type representing the point which should be wrapped.
    All Superinterfaces:
    Point2Wrapper<P>
    All Known Implementing Classes:
    AbstractPoint3Wrapper, OpenCVPoint3Wrapper

    public interface Point3Wrapper<P>
    extends Point2Wrapper<P>

    Interface which wraps a three dimensional point.

    Since:
    1.0
    Author:
    Christoph Praschl
    • Method Detail

      • getZ

        double getZ()
        Getter for the z-coordinate
        Returns:
        Returns the value of the z-coordinate, if this is a three-dimensional point.
      • setZ

        void setZ​(double z)
        Setter for the z-coordinate
        Parameters:
        z - value which should be assigned to the z-coordinate, if this is a three-dimensional point.