UNPKG

agentscript

Version:

AgentScript Model in Model/View architecture

19 lines (17 loc) 503 B
export default function TwoDrawOptions(div, model, patchSize = 10) { const turtleColors = { infected: 'red', susceptible: 'blue', resistant: 'gray', } const drawOptions = { patchesColor: 'black', turtlesShape: 'circle', turtlesSize: 1.5, turtlesColor: t => turtleColors[t.state], // linksColor: 'rgba(255, 255, 255, 0.50', linksColor: 'white', linksWidth: 2, } return { div, patchSize, drawOptions } }