You are here: Start » AVL.NET » Function Reference » Point3DGrid » Point3DGrid Spatial Transforms » AVL.TransformPoint3DGrid

AVL.TransformPoint3DGrid

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void TransformPoint3DGrid
(
	AvlNet.Point3DGrid inGrid,
	AvlNet.Matrix inTransform,
	bool inInverse,
	AvlNet.Point3DGrid outGrid
)

Parameters

Name Type Range Default Description
inGridAvlNet.Point3DGrid
inTransformAvlNet.MatrixTransformation 3x3 or 4x4 matrix.
inInverseboolSwitches to the inverse operation.
outGridAvlNet.Point3DGrid

Hardware Acceleration

This operation is optimized for SSE41 technology.

This operation is optimized for AVX2 technology.

This operation is optimized for NEON technology.

This operation supports automatic parallelization for multicore and multiprocessor systems.

Hardware acceleration settings may be manipulated with Settings class.

Errors

List of possible exceptions:

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

See also