RescaleLine
Changes the distance of a line to a reference point.
Syntax
C++
Python
def RescaleLine( inLine: Line2D, inReferencePoint: Point2D, /, *, inScale: float = 1.0, inInverse: bool = False ) -> outLine: Line2D
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inLine | Line2D | ||
![]() |
inReferencePoint | Point2D | The point to which all distances change linearly | |
![]() |
inScale | float | 1.0 | Scaling factor |
![]() |
inInverse | bool | False | Switches to the inverse operation |
![]() |
outLine | Line2D |


