Back to Aurora Vision Library website

You are here: Start » Function Reference » Geometry 3D » Geometry 3D Spatial Transforms » TranslateLine3D

TranslateLine3D


Header: AVL.h
Namespace: avl
Module: Vision3DLite

Shifts a line in 3D by a vector.

Syntax

C++
C#
 
void avl::TranslateLine3D
(
	const avl::Line3D& inLine3D,
	const avl::Vector3D& inDelta,
	bool inInverse,
	avl::Line3D& outLine3D
)

Parameters

Name Type Default Description
Input value inLine3D const Line3D& Input line in 3D
Input value inDelta const Vector3D& Translation vector
Input value inInverse bool Switches to the inverse operation
Output value outLine3D Line3D& Shifted line

In-place Processing

This function supports in-place data processing - you can pass the same reference to inLine3D and outLine3D

Read more about In-place Computation.