Back to Adaptive Vision Library website

You are here: Start » Function Reference » Geometry 2D Spatial Transforms » TranslateLine

TranslateLine


Header:AVL.h
Namespace:avl

Translates a line by a vector.

Syntax

C++
C#
 
void avl::TranslateLine
(
	const avl::Line2D& inLine,
	const avl::Vector2D& inDelta,
	bool inInverse,
	const avl::TranslateAlignment::Type inDeltaAlignment,
	avl::Line2D& outLine
)

Parameters

Name Type Default Description
inLine const Line2D&
inDelta const Vector2D& Vector of translation
inInverse bool Switches to the inverse operation
inDeltaAlignment const TranslateAlignment::Type
outLine Line2D&

Examples

TranslateLine performed on the sample line, inDelta = (200.0, 50.0) and inInverse = False.

Errors

List of possible exceptions:

Error type Description
DomainError Indefinite line on input in TranslateLine.