RescaleCircle3D
Changes radius of a circle in 3D and translates its center in relation to a reference point.
Syntax
C++
C#
Python
def RescaleCircle3D( inCircle3D: Circle3D, /, *, inReferencePoint: Point3D | None = None, inScale: float = 1.0, inInverse: bool = False ) -> outCircle3D: Circle3D
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inCircle3D | Circle3D | ||
![]() |
inReferencePoint | Point3D | None | None | The point to which the distance of the circle center is changed (circle center by default) |
![]() |
inScale | float | 1.0 | Scaling factor |
![]() |
inInverse | bool | False | Switches to the inverse operation |
![]() |
outCircle3D | Circle3D |


