Interface PathPoint
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
PathPointImpl
public interface PathPoint extends java.io.SerializableThe Interface PathPoint.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetNum()Gets the num.doublegetTangX1()Gets the tang X 1.doublegetTangX2()Gets the tang X 2.doublegetTangY1()Gets the tang Y 1.doublegetTangY2()Gets the tang Y 2.java.lang.StringgetType()Gets the type.doublegetX()Gets the x.doublegetY()Gets the y.voidsetNum(int num)Sets the num.voidsetTangX1(double tangX1)Sets the tang X 1.voidsetTangX2(double tangX2)Sets the tang X 2.voidsetTangY1(double tangY1)Sets the tang Y 1.voidsetTangY2(double tangY2)Sets the tang Y 2.voidsetType(java.lang.String type)Sets the type.voidsetX(double x)Sets the x.voidsetY(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
-
-