Example #1
0
 public void add( GraphPoint point )
 {
     this.points.Add(point);
 }
Example #2
0
 public Edge(GraphPoint start, GraphPoint end, float penWidth)
 {
     this.start = start;
     this.end = end;
     this.penWidth = penWidth;
 }