Back to Aurora Vision Library website

You are here: Start » Function Reference » Region » Region Features » RegionBoundingRectangle_FixedAngle_OrNil

RegionBoundingRectangle_FixedAngle_OrNil


Header: AVL.h
Namespace: avl
Module: FoundationBasic

Computes the smallest rectangle with the given orientation angle containing a region; returns NIL if the region is empty.

Syntax

C++
C#
 
void avl::RegionBoundingRectangle_FixedAngle_OrNil
(
	const avl::Region& inRegion,
	float inAngle,
	atl::Conditional<avl::Rectangle2D>& outBoundingRectangle,
	atl::Conditional<avl::Point2D>& outCenter,
	atl::Conditional<float>& outLongSide,
	atl::Conditional<float>& outShortSide
)

Parameters

Name Type Default Description
Input value inRegion const Region& Input region
Input value inAngle float Expected angle of the resulting rectangle
Output value outBoundingRectangle Conditional<Rectangle2D>& Smallest bounding rectangle of the input region
Output value outCenter Conditional<Point2D>& Center of the bounding rectangle
Output value outLongSide Conditional<float>& Length of the bounding rectangle long side
Output value outShortSide Conditional<float>& Length of the bounding rectangle short side