| patchHere | R Documentation |
Patches hereReport the coordinates of the patches under the turtles
locations.
patchHere(world, turtles)
## S4 method for signature 'worldNLR,agentMatrix'
patchHere(world, turtles)
world |
|
turtles |
|
If a turtle is located outside of the world's extent,
NA are returned
for the patch coordinates.
Matrix (ncol = 2) with the first column pxcor and the second column
pycor representing the coordinates of the patches at the turtles
location. The order of the patches follows the order of the turtles.
Sarah Bauduin
Wilensky, U. 1999. NetLogo. https://www.netlogo.org. Center for Connected Learning and Computer-Based Modeling, Northwestern University. Evanston, IL.
https://docs.netlogo.org/dictionary.html#patch-here
w1 <- createWorld(minPxcor = 0, maxPxcor = 9, minPycor = 0, maxPycor = 9)
t1 <- createTurtles(n = 10, coords = randomXYcor(w1, n = 10))
patchHere(world = w1, turtles = t1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.