public bool Contains(Vector2 point) { return(Math2d.Pow2(point.x - Center.x) + Math2d.Pow2(point.y - Center.y) < Math2d.Pow2(Radius)); }