public virtual void SetLocation(CellAreaPt pt)
 {
     SetLocation(pt.x, pt.y);
 }
 public CellAreaPt(CellAreaPt src)
 {
     this.x = src.x;
     this.y = src.y;
 }