RotatePoint3DArray_AroundSegment
Rotates an array of 3D points around a segment (the axis).
Syntax
C++
C#
Python
def RotatePoint3DArray_AroundSegment( inPoints3D: list[Point3D], inAxisSegment: Segment3D, inAngle: float, /, *, inInverse: bool = False, outTransform: Matrix | None = None ) -> outPoints3D: list[Point3D]
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoints3D | list[Point3D] | ||
![]() |
inAxisSegment | Segment3D | The rotation axis | |
![]() |
inAngle | float | Clockwise angle of rotation | |
![]() |
inInverse | bool | False | Switches to the inverse operation |
![]() |
outPoints3D | list[Point3D] | ||
![]() |
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.


