CreateBicircularCurve
Creates a bicircular curve passing through the points of the leading path.
Applications:This is a fast algorithm that approximates Bezier's splines for dense paths.
Syntax
C++
C#
Python
def CreateBicircularCurve( inLeadingPath: Path, inInterpolationPointCount: int, outBicircularCurve: Path, / ) -> None
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inLeadingPath | Path | The path that will have its corners rounded | |
![]() |
inInterpolationPointCount | int | Number of points used for interpolation between each pair of points on the input path | |
![]() |
outBicircularCurve | Path | A smooth output path |


