A return value of 1 indicates that the line segment must turn in the direction that takes the positive X axis towards the negative Y axis. In the default coordinate system used by Java 2D, this direction is counterclockwise.
A return value of -1 indicates that the line segment must turn in the direction that takes the positive X axis towards the positive Y axis. In the default coordinate system, this direction is clockwise.
A return value of 0 indicates that the point lies exactly on the line segment. Note that an indicator value of 0 is rare and not useful for determining colinearity because of floating point rounding issues.
If the point is colinear with the line segment, but not between the end points, then the value will be -1 if the point lies "beyond {@code (x1,y1)}" or 1 if the point lies "beyond {@code (x2,y2)}". @param x1 the X coordinate of the start point of thespecified line segment @param y1 the Y coordinate of the start point of thespecified line segment @param x2 the X coordinate of the end point of thespecified line segment @param y2 the Y coordinate of the end point of thespecified line segment @param px the X coordinate of the specified point to becompared with the specified line segment @param py the Y coordinate of the specified point to becompared with the specified line segment @return an integer that indicates the position of the third specifiedcoordinates with respect to the line segment formed by the first two specified coordinates. @since 1.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|