1 | /**
|
2 | * Converts A (arc-to) segments to C (cubic-bezier-to).
|
3 | *
|
4 | * For more information of where this math came from visit:
|
5 | * http://www.w3.org/TR/SVG11/implnote.html#ArcImplementationNotes
|
6 | */
|
7 | export declare function arcToCubic(X1: number, Y1: number, RX: number, RY: number, angle: number, LAF: number, SF: number, X2: number, Y2: number, recursive: number[]): any[];
|