You are here: Start » FIL.NET » Invoke.PointsBoundingParallelogram

Invoke.PointsBoundingParallelogram

Computes the smallest parallelogram containing an array of points.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void PointsBoundingParallelogram
(
	List<Fil.Point2D> inPoints,
	Fil.BoundingRectangleFeature inBoundingParallelogramFeature,
	Fil.Path outBoundingParallelogram,
	Optional<Fil.Point2D> outCenter,
	Optional<float> outLongSide,
	Optional<float> outShortSide,
	Optional<float> outAngle
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.List<Fil.Point2D>Input array of points.
inBoundingParallelogramFeatureFil.BoundingRectangleFeatureMinimalAreaDetermines what kind of bounding parallelogram will be computed. Default value: MinimalArea.
outBoundingParallelogramFil.PathSmallest bounding parallelogram of the input points.
outCenterFtl.Optional<Fil.Point2D>Center of the bounding parallelogram.
outLongSideFtl.Optional<float>Length of the bounding parallelogram long side.
outShortSideFtl.Optional<float>Length of the bounding parallelogram short side.
outAngleFtl.Optional<float>Angle of the bounding parallelogram.

See also