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

Invoke.PointsBoundingRectangle_FixedAngle

Computes the smallest rectangle with the given orientation angle containing an array of points.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void PointsBoundingRectangle_FixedAngle
(
	List<Fil.Point2D> inPoints,
	float inAngle,
	out Fil.Rectangle2D outBoundingRectangle,
	Optional<Fil.Point2D> outCenter,
	Optional<float> outLongSide,
	Optional<float> outShortSide
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.List<Fil.Point2D>Input array of points.
inAnglefloatExpected angle of the resulting rectangle.
outBoundingRectangleFil.Rectangle2DSmallest bounding rectangle of the input points.
outCenterFtl.Optional<Fil.Point2D>Center of the bounding rectangle.
outLongSideFtl.Optional<float>Length of the bounding rectangle long side.
outShortSideFtl.Optional<float>Length of the bounding rectangle short side.

See also