Back to Aurora Vision Library website

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

TranslatePoint3D


Header: AVL.h
Namespace: avl
Module: Vision3DLite

Translates a point by a vector.

Syntax

C++
C#
 
void avl::TranslatePoint3D
(
	const avl::Point3D& inPoint3D,
	const avl::Vector3D& inDelta,
	bool inInverse,
	avl::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.