Back to FabImage Library website
You are here: Start » Function Reference » Geometry 2D » Geometry 2D Features » PointsBoundingRectangle_FixedAngle_OrNil
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Computes the smallest rectangle with the given orientation angle containing an array of points; returns NIL when the array is empty.
Syntax
C++
C#
void fil::PointsBoundingRectangle_FixedAngle_OrNil ( const ftl::Array<fil::Point2D>& inPoints, float inAngle, ftl::Conditional<fil::Rectangle2D>& outBoundingRectangle, ftl::Conditional<fil::Point2D>& outCenter, ftl::Conditional<float>& outLongSide, ftl::Conditional<float>& outShortSide )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inPoints | const Array<Point2D>& | Input array of points | |
![]() |
inAngle | float | Expected angle of the resulting rectangle | |
![]() |
outBoundingRectangle | Conditional<Rectangle2D>& | Smallest bounding rectangle of the input points | |
![]() |
outCenter | Conditional<Point2D>& | Center of the bounding rectangle | |
![]() |
outLongSide | Conditional<float>& | Length of the bounding rectangle long side | |
![]() |
outShortSide | Conditional<float>& | Length of the bounding rectangle short side |