[ b a c k t o i n d e x ]
package robot_graph;
/**
* Is a point on a plane. Handy to make an
* address object on a graph.
* Creation date: (11/8/2000 4:31:20 PM)
* @author: William Martin
*/
class LinePoint {
int x;
int y;
/**
* LinePoint constructor comment.
*/
public LinePoint(int x, int y) {
this.x=x;
this.y=y;
}
}