UNPKG

agentscript

Version:

AgentScript Model in Model/View architecture

11 lines (9 loc) 321 B
export default function TwoDrawOptions(div, model, patchSize = 20) { const drawOptions = { turtlesColor: t => (model.cluster.has(t) ? 'red' : 'random'), turtlesShape: 'circle', turtlesSize: 2, linksColor: 'rgba(255, 255, 255, 0.50', } return { div, patchSize, drawOptions } }