Back to FabImage Library website
You are here: Start » Function Reference » Geometry 3D » Geometry 3D Spatial Transforms » TranslateLine3D

TranslateLine3D
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | Vision3DLite |
Shifts a line in 3D by a vector.
Syntax
C++
C#
void fil::TranslateLine3D ( const fil::Line3D& inLine3D, const fil::Vector3D& inDelta, bool inInverse, fil::Line3D& outLine3D )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inLine3D | const Line3D& | Input line in 3D | |
![]() |
inDelta | const Vector3D& | Translation vector | |
![]() |
inInverse | bool | Switches to the inverse operation | |
![]() |
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.