Description:
Determines whether this bounding box contains another bounding box. The user can choose how to treat bounding boxes with coincident surfaces.
Syntax:
Parameters:
- box
- Type: BoundingBox
- Box to test.
- strict
- Type: bool
- If true, the box needs to be fully on the inside of the bounding box. I.e. coincident boxes will be considered 'outside'.
Returns:
Type: bool
True if the box is (strictly) on the inside of this BoundingBox.
Available since:
5.0
Description:
Determines whether this bounding box contains another bounding box. This is the same as calling Contains(box,false).
Syntax:
Parameters:
- box
- Type: BoundingBox
- Box to test.
Returns:
Type: bool
True if the box is on the inside of this bounding box, or is coincident with the surface of it.
Available since:
5.0
Description:
Tests a point for BoundingBox inclusion.
Parameters:
- point
- Type: Point3d
- Point to test.
- strict
- Type: bool
- If true, the point needs to be fully on the inside of the BoundingBox. I.e. coincident points will be considered 'outside'.
Returns:
Type: bool
If 'strict' is affirmative, True if the point is inside this bounding box; False if it is on the surface or outside.
If 'strict' is negative, True if the point is on the surface or on the inside of the bounding box; otherwise false.
Available since:
5.0
Description:
Tests a point for bounding box inclusion. This is the same as calling Contains(point, false)