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
21 lines (19 loc) • 448 B
text/typescript
import RandomGenerator from './RandomGenerator'
import NoiseGenerator from './NoiseGenerator'
import Vector2 from './Vector2'
import Array from './Array'
import Angle from './Angle'
import Color from './Color'
import GeoLocation, { BoundingBox } from './GeoLocation'
import Geometry from './Geometry'
export {
Array,
Angle,
Color,
NoiseGenerator,
RandomGenerator,
Vector2,
GeoLocation,
BoundingBox,
Geometry
}