mirror of
https://github.com/rough-stuff/rough.git
synced 2026-04-22 03:00:28 -04:00
3 lines
139 B
TypeScript
3 lines
139 B
TypeScript
import { Point, Rectangle } from '../geometry';
|
|
export declare function clip(p1: Point, p2: Point, box: Rectangle): [Point, Point] | null;
|