Back to Aurora Vision Library website

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

TranslatePlane


Header: AVL.h
Namespace: avl
Module: Vision3DLite

Shifts a plane in 3D by a vector.

Syntax

C++
C#
 
void avl::TranslatePlane
(
	const avl::Plane3D& inPlane,
	const avl::Vector3D& inDelta,
	bool inInverse,
	avl::Plane3D& outPlane
)

Parameters

Name Type Default Description
Input value inPlane const Plane3D& Input plane
Input value inDelta const Vector3D& Translation vector
Input value inInverse bool Switches to the inverse operation
Output value outPlane Plane3D& Shifted plane

In-place Processing

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

Read more about In-place Computation.

Errors

List of possible exceptions:

Error type Description
DomainError Indefinite plane on input in TranslatePlane.