UNPKG

@mathigon/euclid

Version:

Euclidean geometry classes and tools for JavaScript

5 lines (4 loc) 211 B
import { Point } from './point'; import { GeoShape } from './utilities'; /** Returns the intersection of two or more geometry objects. */ export declare function intersections(...elements: GeoShape[]): Point[];