View Javadoc

1   package cz.cuni.amis.pogamut.usar2004.agent.module.geometry;
2   
3   import cz.cuni.amis.pogamut.usar2004.agent.module.datatypes.GeometryType;
4   
5   /**
6    * Geometry message representative for Legged robots.
7    *
8    * @author vejmanm
9    */
10  public class GeoLegged extends VehicleGeometry
11  {
12      public static final GeometryType type = GeometryType.LEGGED_ROBOT;
13  
14      /**
15       * Ctor. Geometry type describes particular subject about which we want to
16       * know about. It is used to distinguish incoming message from the server.
17       */
18      public GeoLegged()
19      {
20          super(type);
21      }
22  }