Interface PathPoint

  • All Superinterfaces:
    java.io.Serializable
    All Known Implementing Classes:
    PathPointImpl

    public interface PathPoint
    extends java.io.Serializable
    The Interface PathPoint.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getNum()
      Gets the num.
      double getTangX1()
      Gets the tang X 1.
      double getTangX2()
      Gets the tang X 2.
      double getTangY1()
      Gets the tang Y 1.
      double getTangY2()
      Gets the tang Y 2.
      java.lang.String getType()
      Gets the type.
      double getX()
      Gets the x.
      double getY()
      Gets the y.
      void setNum​(int num)
      Sets the num.
      void setTangX1​(double tangX1)
      Sets the tang X 1.
      void setTangX2​(double tangX2)
      Sets the tang X 2.
      void setTangY1​(double tangY1)
      Sets the tang Y 1.
      void setTangY2​(double tangY2)
      Sets the tang Y 2.
      void setType​(java.lang.String type)
      Sets the type.
      void setX​(double x)
      Sets the x.
      void setY​(double y)
      Sets the y.
    • Method Detail

      • getNum

        int getNum()
        Gets the num.
        Returns:
        the num
      • setNum

        void setNum​(int num)
        Sets the num.
        Parameters:
        num - the new num
      • getType

        java.lang.String getType()
        Gets the type.
        Returns:
        the type
      • setType

        void setType​(java.lang.String type)
        Sets the type.
        Parameters:
        type - the new type
      • getX

        double getX()
        Gets the x.
        Returns:
        the x
      • setX

        void setX​(double x)
        Sets the x.
        Parameters:
        x - the new x
      • getY

        double getY()
        Gets the y.
        Returns:
        the y
      • setY

        void setY​(double y)
        Sets the y.
        Parameters:
        y - the new y
      • getTangX1

        double getTangX1()
        Gets the tang X 1.
        Returns:
        the tang X 1
      • setTangX1

        void setTangX1​(double tangX1)
        Sets the tang X 1.
        Parameters:
        tangX1 - the new tang X 1
      • getTangY1

        double getTangY1()
        Gets the tang Y 1.
        Returns:
        the tang Y 1
      • setTangY1

        void setTangY1​(double tangY1)
        Sets the tang Y 1.
        Parameters:
        tangY1 - the new tang Y 1
      • getTangX2

        double getTangX2()
        Gets the tang X 2.
        Returns:
        the tang X 2
      • setTangX2

        void setTangX2​(double tangX2)
        Sets the tang X 2.
        Parameters:
        tangX2 - the new tang X 2
      • getTangY2

        double getTangY2()
        Gets the tang Y 2.
        Returns:
        the tang Y 2
      • setTangY2

        void setTangY2​(double tangY2)
        Sets the tang Y 2.
        Parameters:
        tangY2 - the new tang Y 2