More javadoc

This commit is contained in:
David Hoover
2011-06-10 17:00:02 -07:00
parent 520167978e
commit 246b4df74a
2 changed files with 6 additions and 0 deletions
+3
View File
@@ -61,8 +61,11 @@ public interface ILine extends IShape, Cloneable
/** Returns the distance from the supplied point this line segment. */
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);
/** Returns an indicator of where the specified point lies with respect to this line segment. */
int relativeCCW (IPoint p);
/** Returns a mutable copy of this line. */
+3
View File
@@ -61,8 +61,11 @@ public interface ILine extends IShape, Cloneable
/** Returns the distance from the supplied point this line segment. */
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);
/** Returns an indicator of where the specified point lies with respect to this line segment. */
int relativeCCW (IPoint p);
/** Returns a mutable copy of this line. */