UNPKG

agentscape

Version:

Agentscape is a library for creating agent-based simulations. It provides a simple API for defining agents and their behavior, and for defining the environment in which the agents interact. Agentscape is designed to be flexible and extensible, allowing

17 lines (16 loc) 494 B
export declare class Intersections { static circleCircle(circle1: { x: number; y: number; r: number; }, circle2: { x: number; y: number; r: number; }): boolean; } export default class Geometry { static concaveHull(points: [number, number][], concavity?: number, lengthThreshold?: number): [number, number][]; static convexHull(points: [number, number][]): [number, number][]; static Intersections: typeof Intersections; }