UNPKG

navmesh

Version:

A library for fast pathfinding using navigation meshes in JS

8 lines (6 loc) 165 B
export interface Point { x: number; y: number; } /** Lightweight representation of a Polygon as a series of points. */ export type PolyPoints = Point[];