You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
370 B
7 lines
370 B
/**
|
|
* Converts A (arc-to) segments to C (cubic-bezier-to).
|
|
*
|
|
* For more information of where this math came from visit:
|
|
* http://www.w3.org/TR/SVG11/implnote.html#ArcImplementationNotes
|
|
*/
|
|
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[];
|
|
|