internal bool IsHit(Point point) { foreach (var p in this.plist) { if (point.Hits(p)) { return true; } } return false; }