You are here: Start » AVL.NET » Invoke.PathBoundingParallelogram

Invoke.PathBoundingParallelogram

Computes the smallest parallelogram containing a path.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void PathBoundingParallelogram
(
	Avl.Path inPath,
	Avl.BoundingRectangleFeature inBoundingParallelogramFeature,
	Avl.Path outBoundingParallelogram,
	Optional<Avl.Point2D> outCenter,
	Optional<float> outLongSide,
	Optional<float> outShortSide,
	Optional<float> outAngle
)

Parameters

Name Type Range Default Description
inPathAvl.PathInput path.
inBoundingParallelogramFeatureAvl.BoundingRectangleFeatureMinimalAreaDetermines what kind of bounding parallelogram will be computed. Default value: MinimalArea.
outBoundingParallelogramAvl.PathSmallest bounding parallelogram of the input points.
outCenterAtl.Optional<Avl.Point2D>Center of the bounding parallelogram.
outLongSideAtl.Optional<float>Length of the bounding parallelogram long side.
outShortSideAtl.Optional<float>Length of the bounding parallelogram short side.
outAngleAtl.Optional<float>Angle of the bounding parallelogram.

See also