You are here: Start » FIL.NET » 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 | |
---|---|---|---|---|---|
![]() | inPoints | System.Collections.Generic.List<Fil.Point2D> | Input array of points. | ||
![]() | inBoundingParallelogramFeature | Fil.BoundingRectangleFeature | MinimalArea | Determines what kind of bounding parallelogram will be computed. Default value: MinimalArea. | |
![]() | outBoundingParallelogram | Fil.Path | Smallest bounding parallelogram of the input points. | ||
![]() | outCenter | Ftl.Optional<Fil.Point2D> | Center of the bounding parallelogram. | ||
![]() | outLongSide | Ftl.Optional<float> | Length of the bounding parallelogram long side. | ||
![]() | outShortSide | Ftl.Optional<float> | Length of the bounding parallelogram short side. | ||
![]() | outAngle | Ftl.Optional<float> | Angle of the bounding parallelogram. |