BoundingBox.Contains in code bolcks not working

i am trying to use the node BoundingBox.Contains in code blocks but it will not work… dose it have a diffrent name??

how can i call it?

thx

this is the eror:Warning: Cannot find static method or constructor Autodesk.DesignScript.Geometry.BoundingBox.Contains()

I am assuming you’re calling it like this:

BoundingBox.Contains(mybbox,mypoint)

You’ll need to call it like this:

mybbox.Contains(mypoint)