You are here: Start » AVL.NET » Function Reference » Region » Region Spatial Transforms » AVL.AlignRegion

AVL.AlignRegion

Aligns a region to a coordinate system.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void AlignRegion
(
	AvlNet.Region inRegion,
	AvlNet.CoordinateSystem2D inAlignment,
	bool inInverse,
	int? inFrameWidth,
	int? inFrameHeight,
	AvlNet.Region outAlignedRegion
)

Parameters

Name Type Range Default Description
inRegionAvlNet.RegionInput region.
inAlignmentAvlNet.CoordinateSystem2DCoordinate system to align to.
inInverseboolSwitches to the inverse transform.
inFrameWidthint?<0, 65535>Output region's frame width. Default value: atl::NIL.
inFrameHeightint?<0, 65535>Output region's frame height. Default value: atl::NIL.
outAlignedRegionAvlNet.Region

Description

AlignRegion applies inAlignment transform to an input region.

Examples

AlignRegion performed on the sample region, inAlignment.Origin = (280, -120), inAlignment.Angle = 45, inAlignment.Scale = 1.0 and inInverse = False. The inAlignment.Origin is drawn on the first image in blue.

Remarks

Region is a pixel-precise object, so geometrical transform may cause its deformation. Consider using a closed Path instead, which can be converted to a region in the last step.

See also