Reputation: 79
I'm writing program. I want to count the number of turtles move through one cross, but I do not know what commands can count the number of turtles in each section?
Upvotes: 0
Views: 54
Reputation: 3806
If you know the xcor of the intersection, then
count turtles with [xcor = section-xcor]
Upvotes: 2