Back to FabImage Library website

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

TransformPoint3DArray


Header:FIL.h
Namespace:fil

Applies a general transformation expressed by a matrix to an array of 3D points.

Syntax

C++
C#
 
void fil::TransformPoint3DArray
(
	const ftl::Array<fil::Point3D>& inPoints3D,
	const fil::Matrix& inTransform,
	bool inInverse,
	ftl::Array<fil::Point3D>& outPoints3D
)

Parameters

Name Type Default Description
inPoints3D const Array<Point3D>&
inTransform const Matrix& Transformation 3x3 or 4x4 matrix
inInverse bool Switches to the inverse operation
outPoints3D Array<Point3D>&

Errors

List of possible exceptions:

Error type Description
DomainError Transformation matrix size must be 3x3 or 4x4 in 3D point transform.