Tests if a bounding box fits into another bounding box.

Namespace:  ceometric.ComputationalGeometry
Assembly:  ceometric.ComputationalGeometry (in ceometric.ComputationalGeometry.dll) Version: 2.4.0.0 (2.4.0.0)

Syntax

C#
public bool FitsInto(
	BoundingBox boundingBox
)
Visual Basic (Declaration)
Public Function FitsInto ( _
	boundingBox As BoundingBox _
) As Boolean
Visual C++
public:
bool FitsInto(
	BoundingBox^ boundingBox
)

Parameters

boundingBox
Type: ceometric.ComputationalGeometry..::.BoundingBox
A bounding box.

Return Value

Returns true if this bounding box fits into boundingBox, false otherwise.

See Also