package geometry;

/**
 * Copyright 2007, 2008 Viera K. Proulx, Matthias Felleisen
 * This program is distributed under the terms of the 
 * GNU Lesser General Public License (LGPL)
 */

/**
 * To represent a point on the drawing 
 * <CODE>Canvas</CODE> 
 * 
 * @author Viera K. Proulx
 * @since August 2, 2007
 */
public class Posn {
  public int x;
  public int y;

  public Posn(int x, int y){
    this.x = x;
    this.y = y;
  }
}
