public bool IsHit(Point p) { return((p.X == X) && (p.Y == Y)); }
public Point(Point p) { X = p.X; Y = p.Y; Sym = p.Sym; }