package Carmen;
/**  Carmen Point 
   */

public class Point {
  /** pose information in metres for x, y and radians for theta */
  public double x, y, theta;
}
