Added to toString() method to CuboidRegion.

Dieser Commit ist enthalten in:
TomyLobo 2011-08-08 14:39:16 +02:00
Ursprung 2c155c241b
Commit 6f79df8398

Datei anzeigen

@ -342,4 +342,14 @@ public class CuboidRegion implements Region {
} }
}; };
} }
/**
* Returns string representation "( (x, y, z) - (x, y, z) )".
*
* @return string
*/
@Override
public String toString() {
return "( "+getMinimumPoint()+" - "+getMaximumPoint()+" )";
}
} }