Determine if a point falls inside a polygon

Hi,
I`m using the following code (in python, using dynamo methods) to determine if a point is inside a closed curve but it seems a bit of a workaround. Is there a more simple way to do this?

bool = (Autodesk.DesignScript.Geometry.Surface.ByPatch(Closed_Curve).Thicken(Hoogte,True)).BoundingBox.Contains(Point)

https://dictionary.dynamobim.com/#/Geometry/Polygon/Action/ContainmentTest

thanks!