More javadoc
This commit is contained in:
@@ -61,8 +61,11 @@ public interface ILine extends IShape, Cloneable
|
|||||||
/** Returns the distance from the supplied point this line segment. */
|
/** Returns the distance from the supplied point this line segment. */
|
||||||
double pointSegDist (IPoint p);
|
double pointSegDist (IPoint p);
|
||||||
|
|
||||||
|
/** Returns an indicator of where the specified point (px,py) lies with respect to this line
|
||||||
|
* segment. */
|
||||||
int relativeCCW (double px, double py);
|
int relativeCCW (double px, double py);
|
||||||
|
|
||||||
|
/** Returns an indicator of where the specified point lies with respect to this line segment. */
|
||||||
int relativeCCW (IPoint p);
|
int relativeCCW (IPoint p);
|
||||||
|
|
||||||
/** Returns a mutable copy of this line. */
|
/** Returns a mutable copy of this line. */
|
||||||
|
|||||||
@@ -61,8 +61,11 @@ public interface ILine extends IShape, Cloneable
|
|||||||
/** Returns the distance from the supplied point this line segment. */
|
/** Returns the distance from the supplied point this line segment. */
|
||||||
float pointSegDist (IPoint p);
|
float pointSegDist (IPoint p);
|
||||||
|
|
||||||
|
/** Returns an indicator of where the specified point (px,py) lies with respect to this line
|
||||||
|
* segment. */
|
||||||
int relativeCCW (float px, float py);
|
int relativeCCW (float px, float py);
|
||||||
|
|
||||||
|
/** Returns an indicator of where the specified point lies with respect to this line segment. */
|
||||||
int relativeCCW (IPoint p);
|
int relativeCCW (IPoint p);
|
||||||
|
|
||||||
/** Returns a mutable copy of this line. */
|
/** Returns a mutable copy of this line. */
|
||||||
|
|||||||
Reference in New Issue
Block a user