I am trying to apply the following condition:
if ( the color of patch -2 -1 is red ) [ some commands ]
Could someone please tell me how to write this in NetLogo?
|
I am trying to apply the following condition: if ( the color of patch -2 -1 is red ) [ some commands ] Could someone please tell me how to write this in NetLogo? |
||||
|
|
If you mean the patch at coordinates (-2 1) then its:
or
|
|||
|
|
You could do it with a with to get the agentset like Jose M Vidal has suggested. 1) Using AgentSet
2) If you want to use an if condition specifically, write it as such:
|
|||
|
|