RescalePoint3DArray
Changes the distances of array points to a reference point.
Syntax
C++
C#
Python
def RescalePoint3DArray( inPoints3D: list[Point3D], inReferencePoint: Point3D, /, *, inScale: float = 1.0, inInverse: bool = False ) -> outPoints3D: list[Point3D]
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoints3D | list[Point3D] | ||
![]() |
inReferencePoint | Point3D | Point to which the distances will be changed | |
![]() |
inScale | float | 1.0 | Scaling factor |
![]() |
inInverse | bool | False | Switches to the inverse operation |
![]() |
outPoints3D | list[Point3D] |
Hardware Acceleration
This operation is optimized for SSE2 technology.
This operation is optimized for AVX2 technology.
This operation is optimized for NEON technology.


