Back to FabImage Library website

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

TranslatePoint3D


Header: FIL.h
Namespace: fil
Module: Vision3DLite

Translates a point by a vector.

Syntax

C++
C#
 
void fil::TranslatePoint3D
(
	const fil::Point3D& inPoint3D,
	const fil::Vector3D& inDelta,
	bool inInverse,
	fil::Point3D& outPoint3D
)

Parameters

Name Type Default Description
Input value inPoint3D const Point3D&
Input value inDelta const Vector3D& Translation vector
Input value inInverse bool Switches to the inverse operation
Output value outPoint3D Point3D&

In-place Processing

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

Read more about In-place Computation.