You are here: Start » FIL.NET » Function Reference » Geometry 3D » Geometry 3D Spatial Transforms » FIL.TransformPoint3DArray
Applies a general transformation expressed by a matrix to an array of 3D points.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void TransformPoint3DArray ( IList<FilNet.Point3D> inPoints3D, FilNet.Matrix inTransform, bool inInverse, IList<FilNet.Point3D> outPoints3D )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPoints3D | System.Collections.Generic.IList<FilNet.Point3D> | |||
![]() | inTransform | FilNet.Matrix | Transformation 3x3 or 4x4 matrix. | ||
![]() | inInverse | bool | Switches to the inverse operation. | ||
![]() | outPoints3D | System.Collections.Generic.IList<FilNet.Point3D> |
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. |