Click or drag to resize

BoundingBoxContains Method (BoundingBox, Boolean)

Determines whether this bounding box contains another bounding box.

The user can choose how to treat bounding boxes with coincident surfaces.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public bool Contains(
	BoundingBox box,
	bool strict
)

Parameters

box
Type: Rhino.GeometryBoundingBox
Box to test.
strict
Type: SystemBoolean
If true, the box needs to be fully on the inside of the bounding box. I.e. coincident boxes will be considered 'outside'.

Return Value

Type: Boolean
true if the box is (strictly) on the inside of this BoundingBox.
See Also