UNPKG

rough-native

Version:

Create graphics using HTML Canvas or SVG with a hand-drawn, sketchy, appearance. Features comprehensive React hooks, memory management, and React 18 concurrent rendering support.

10 lines (9 loc) 229 B
export type Point = [number, number]; export type Line = [Point, Point]; export interface Rectangle { x: number; y: number; width: number; height: number; } export declare function lineLength(line: Line): number;