Back to Aurora Vision Library Lite website
You are here: Start » Geometry 2D » Geometry 2D Spatial Transforms » ResizeRectangle_Delta
ResizeRectangle_Delta
| Header: | AVL.h |
|---|---|
| Namespace: | avl |
Changes dimensions of a rectangle by adding some values.
Syntax
void avl::ResizeRectangle_Delta ( const avl::Rectangle2D& inRectangle, avl::Anchor2D::Type inAnchor, float inWidthDelta, float inHeightDelta, avl::Rectangle2D& outRectangle )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inRectangle | const Rectangle2D& | ||
![]() |
inAnchor | Anchor2D::Type | TopLeft | |
![]() |
inWidthDelta | float | 0.0f | Value added to width of the rectangle |
![]() |
inHeightDelta | float | 0.0f | Value added to height of the rectangle |
![]() |
outRectangle | Rectangle2D& |
In-place Processing
This function supports in-place data processing - you can pass the same reference to inRectangle and outRectangle
Read more about In-place Computation.
Errors
List of possible exceptions:
| Error type | Description |
|---|---|
| DomainError | Negative rectangle dimensions in ResizeRectangle_Delta. |


