View Javadoc

1   package cz.cuni.amis.pogamut.base3d.worldview.object;
2   
3   /**
4    * General interface for objects that are located within the world.
5    *
6    * @author Juraj 'Loque' Simlovic
7    */
8   public interface ILocated
9   {
10  	/**
11  	 * Retreives current location of the object.
12  	 *
13  	 * @return Current location of the object, represented as a point within the
14  	 * world's coordinates.
15  	 */
16  	Location getLocation();
17  
18  }