View Javadoc

1   package cz.cuni.amis.pogamut.defcon.communication.worldview.modules.grid;
2   
3   import cz.cuni.amis.pogamut.base3d.worldview.object.Location;
4   
5   /**
6    * Interface for retrieval of the actual location of the grid cell whose id this
7    * is. Experimental.
8    * 
9    * @author Radek 'Black_Hand' Pibil
10   * 
11   */
12  public interface IGridCellId {
13  	
14  	public float getX();
15  	
16  	public float getY();
17  	
18  	public Location getLocation();
19  	
20  //	public void setX(float x);
21  //	
22  //	public void setY(float y);
23  //	
24  //	public void setLocation(float x, float y);
25  //	
26  //	public void setLocation(Location location);		
27  }