RotatePoint3DArray


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

Syntax

C++
C#
Python
 
def RotatePoint3DArray(
	inPoints3D: list[Point3D],
	inAxis: Line3D,
	inAngle: float,
	/,
	*,
	inInverse: bool = False,
	outTransform: Matrix | None = None
)
-> outPoints3D: list[Point3D]

Parameters

Name Type Default Description
Input value inPoints3D list[Point3D]
Input value inAxis Line3D The rotation axis
Input value inAngle float Clockwise angle of rotation
Input value inInverse bool False Switches to the inverse operation
Output value outPoints3D list[Point3D]
Output value outTransform Matrix | None None

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.