You are here: Start » FIL.NET » Function Reference » Geometry 2D » Geometry 2D Spatial Transforms » FIL.RescaleRectangle

FIL.RescaleRectangle

Changes the corners and the dimensions of a rectangle.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void RescaleRectangle
(
	FilNet.Rectangle2D inRectangle,
	FilNet.Point2D? inReferencePoint,
	float inScale,
	bool inInverse,
	out FilNet.Rectangle2D outRectangle
)

Parameters

Name Type Range Default Description
inRectangleFilNet.Rectangle2D
inReferencePointFilNet.Point2D?The point, to which all distance will be changed proportionally. Default value: ftl::NIL.
inScalefloat1.0fScaling factor. Default value: 1.0f.
inInverseboolSwitches to the inverse operation.
outRectangleFilNet.Rectangle2D

Examples

RescaleRectangle performed on the sample rectangle, inReferencePoint = (0.0, 0.0), inScale = 2.0 and inInverse = false.

Errors

List of possible exceptions:

Error type Description
DomainError Scale cannot be zero in inverse scaling of rectangle in RescaleRectangle.

Function Overrides

See also