Added semi-useful toStrings.

This commit is contained in:
Michael Bayne
2013-03-06 11:19:45 -08:00
parent 25b09788e3
commit 7edef042c0
2 changed files with 12 additions and 0 deletions
+6
View File
@@ -289,6 +289,12 @@ public class Area implements IShape, Cloneable
return area;
}
@Override // from Object
public String toString () {
return "Area[coords=" + _coordsSize + ", rules=" + _rulesSize +
", isPoly=" + _isPolygonal + "]";
}
private void addCurvePolygon (Area area) {
CurveCrossingHelper crossHelper = new CurveCrossingHelper(
new double[][] {_coords, area._coords},
+6
View File
@@ -289,6 +289,12 @@ public class Area implements IShape, Cloneable
return area;
}
@Override // from Object
public String toString () {
return "Area[coords=" + _coordsSize + ", rules=" + _rulesSize +
", isPoly=" + _isPolygonal + "]";
}
private void addCurvePolygon (Area area) {
CurveCrossingHelper crossHelper = new CurveCrossingHelper(
new float[][] {_coords, area._coords},