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

FIL.RescaleLine

Changes the distance of a line to a reference point.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void RescaleLine
(
	FilNet.Line2D inLine,
	FilNet.Point2D inReferencePoint,
	float inScale,
	bool inInverse,
	out FilNet.Line2D outLine
)

Parameters

Name Type Range Default Description
inLineFilNet.Line2D
inReferencePointFilNet.Point2DThe point to which all distances change linearly.
inScalefloat1.0fScaling factor. Default value: 1.0f.
inInverseboolSwitches to the inverse operation.
outLineFilNet.Line2D

Errors

List of possible exceptions:

Error type Description
DomainError Indefinite line on input in RescaleLine.
DomainError Scale cannot be zero in an inverse rescaling of a line in RescaleLine.

See also