When a person agent is absorbing one node, I am trying to find the list/array of other nodes (point node) around him within a certain diameter range (let's say 10feet). Is there any built-in function to sort those nodes around the agent? I was trying "agentInRange", "getNearestAgent" but those aren't actually the right ones for my need as these functions return a list of person agent within the range not the list of nodes around him. How I can get the list of nodes (point node) around an agent? Thanks.

1

There are 1 best solutions below

2
On

Not that I know of.

But you can easily put all nodes in your model into a collection, then let your agents loop across that collection to check. Something like this, will need to be adjusted to your needs and conditions

for (PointNode currentNode : col_AllNodes) {
    if (currentNode.getX() ...) { // check your condition
        return true;
    }
}

You can easily put all nodes into a collection by selecting them all, right-click and then selected "create collection" as below: enter image description here