Added getFootprint().

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2334 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-03-26 23:42:41 +00:00
parent 3ebff402de
commit d29fef39ba
@@ -1,8 +1,10 @@
//
// $Id: Cluster.java,v 1.4 2003/03/26 02:37:08 mdb Exp $
// $Id: Cluster.java,v 1.5 2003/03/26 23:42:41 mdb Exp $
package com.threerings.whirled.spot.data;
import java.awt.Rectangle;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.presents.dobj.DSet;
@@ -19,6 +21,14 @@ public class Cluster extends SimpleStreamableObject
/** The bounds of the cluster in the scene. */
public int x, y, width, height;
/**
* Returns the "footprint" of this cluster in tile coordinates.
*/
public Rectangle getFootprint ()
{
return new Rectangle(x, y, width, height);
}
// documentation inherited
public Comparable getKey ()
{