View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   
6   package cz.cuni.amis.pogamut.unreal.communication.worldview.map;
7   
8   import cz.cuni.amis.pogamut.base3d.worldview.object.Location;
9   import java.io.IOException;
10  import java.io.Serializable;
11  
12  /**
13   *
14   * @author ik
15   */
16  public interface IUnrealMapInfo extends Serializable {
17  
18      int getHeight();
19  
20      byte[] getImgRGBData();
21  
22      String getName();
23  
24      int getWidth();
25  
26      void setImage(String path) throws IOException;
27  
28      void setImagePoint(int i, Location l);
29  
30      void setName(String name);
31  
32      void setWorldPos(int i, Location l);
33  
34      Location[] getImagePoints();
35  
36      Location[] getWorldPoints();
37  }