RescalePathArray
Translates each point of each path proportionally to its distance to a reference point.
Syntax
C++
Python
def RescalePathArray( inPaths: list[Path], /, *, inReferencePoint: Point2D | None = None, inScale: float = 1.0, inInverse: bool = False ) -> outPaths: list[Path]
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPaths | list[Path] | ||
![]() |
inReferencePoint | Point2D | None | None | The point to which all distances change linearly (the mass center by default) |
![]() |
inScale | float | 1.0 | Scaling factor |
![]() |
inInverse | bool | False | Switches to the inverse operation |
![]() |
outPaths | list[Path] |


