UNPKG

@targomo/leaflet

Version:

Leaflet maps extensions for Targomo's time-based access mapping services.

6 lines (5 loc) 289 B
import { ProjectedPoint } from './projectedPolygon'; /** * [clip clipping like sutherland http://rosettacode.org/wiki/Sutherland-Hodgman_polygon_clipping#JavaScript] */ export declare function clip(subjectPolygon: ProjectedPoint[], clipPolygon: ProjectedPoint[]): ProjectedPoint[];