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

AVL.RotatePoint3DArray

Rotates an array of 3D points around an axis in 3D.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void RotatePoint3DArray
(
	IList<AvlNet.Point3D> inPoints3D,
	AvlNet.Line3D inAxis,
	float inAngle,
	bool inInverse,
	IList<AvlNet.Point3D> outPoints3D,
	NullableRef<AvlNet.Matrix> outTransform
)

Parameters

Name Type Range Default Description
inPoints3DSystem.Collections.Generic.IList<AvlNet.Point3D>
inAxisAvlNet.Line3DThe rotation axis.
inAnglefloatClockwise angle of rotation.
inInverseboolSwitches to the inverse operation.
outPoints3DSystem.Collections.Generic.IList<AvlNet.Point3D>
outTransformAvlNet.NullableRef<AvlNet.Matrix> Can be null to skip this parameter calculation.

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.

Function Overrides

See also