@zsnout/ithkuil
Version:
A set of tools which can generate and parse romanized Ithkuil text and which can generate Ithkuil script from text and JSON data.
15 lines (14 loc) • 427 B
TypeScript
/**
* Rotates an SVG path 180 degrees, ignoring capital M commands.
*
* @param path The path to be modified.
* @returns The resulting path.
*/
export declare function rotate180(x: string): string;
/**
* Rotates an SVG path 180 degrees, including capital M commands.
*
* @param path The path to be modified.
* @returns The resulting path.
*/
export declare function rotate180AndRotateStartingPoint(x: string): string;