Description:

Determines whether this bounding box contains another bounding box. The user can choose how to treat bounding boxes with coincident surfaces.

Syntax:
public bool Contains(
BoundingBox box,
bool strict
)
Parameters:
  • 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:
public bool Contains(
BoundingBox box
)
Parameters:
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.

Syntax:
public bool Contains(
Point3d point,
bool strict
)
Parameters:
  • 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)

Syntax:
public bool Contains(
Point3d point
)
Parameters:
Returns:
Type: bool
True if the point is on the inside of or coincident with this bounding box; otherwise false.
Available since:
5.0

Nothing found