Computes a container fit. This method is BETA

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

Syntax

C#
public BoundingBox FitInContainer(
	double width,
	double height,
	double length
)
Visual Basic (Declaration)
Public Function FitInContainer ( _
	width As Double, _
	height As Double, _
	length As Double _
) As BoundingBox
Visual C++
public:
BoundingBox^ FitInContainer(
	double width, 
	double height, 
	double length
)

Parameters

width
Type: System..::.Double
The width of the container.
height
Type: System..::.Double
The height of the container
length
Type: System..::.Double
The length of the container

Return Value

Returns bounding box with the specified dimensions that is positioned to best fir the convex hull in space.

See Also