You are here: Start » AVL.NET » Function Reference » Geometry 3D » Geometry 3D Spatial Transforms » AVL.TransformPlane

AVL.TransformPlane

Applies a general transformation expressed by a matrix to a plane.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void TransformPlane
(
	AvlNet.Plane3D inPlane,
	AvlNet.Matrix inTransform,
	bool inInverse,
	out AvlNet.Plane3D outPlane
)

Parameters

Name Type Range Default Description
inPlaneAvlNet.Plane3D
inTransformAvlNet.MatrixTransformation 3x3 or 4x4 matrix.
inInverseboolSwitches to the inverse operation.
outPlaneAvlNet.Plane3D

Errors

List of possible exceptions:

Error type Description
DomainError Singular matrix not allowed in TransformPlane.
DomainError Transformation matrix size must be 3x3 or 4x4 in TransformPlane.

See also