UNPKG

@skillpet/circuit

Version:

Circuit diagram library — render electrical schematics from JSON, with interactive SVG, themes, and Vue/React components

7 lines (6 loc) 286 B
/** * Rounded polygon corners — ported from Python `segments.roundcorners`. */ import { Point, type XY } from "./point.js"; /** Convex polygon corner rounding (subset; matches Python for typical boxes). */ export declare function roundCorners(verts: XY[], radius: number): Point[];