You are here: Start » FIL.NET » Function Reference » Geometry 3D » Geometry 3D Spatial Transforms » FIL.TransformPoint3D

FIL.TransformPoint3D

Applies a general transformation expressed by a matrix to a 3D point.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void TransformPoint3D
(
	FilNet.Point3D inPoint3D,
	FilNet.Matrix inTransform,
	bool inInverse,
	out FilNet.Point3D outPoint3D
)

Parameters

Name Type Range Default Description
inPoint3DFilNet.Point3D
inTransformFilNet.MatrixTransformation 3x3 or 4x4 matrix.
inInverseboolSwitches to the inverse operation.
outPoint3DFilNet.Point3D

Errors

List of possible exceptions:

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

See also