Added Dimensions.ZERO.

This commit is contained in:
Michael Bayne
2012-10-10 13:29:06 -07:00
parent 0fb5898c2f
commit f1a23112a9
2 changed files with 6 additions and 0 deletions
@@ -9,6 +9,9 @@ package pythagoras.d;
*/
public class Dimensions
{
/** A dimension width zero width and height. */
public static final IDimension ZERO = new Dimension(0, 0);
/**
* Returns a string describing the supplied dimension, of the form <code>widthxheight</code>.
*/
@@ -9,6 +9,9 @@ package pythagoras.f;
*/
public class Dimensions
{
/** A dimension width zero width and height. */
public static final IDimension ZERO = new Dimension(0, 0);
/**
* Returns a string describing the supplied dimension, of the form <code>widthxheight</code>.
*/