Learn R Programming

NetLogoR (version 0.3.9)

patchSet: Patch set

Description

Report the patch coordinates of all the unique patches contained in the inputs.

Usage

patchSet(...)

# S4 method for matrix patchSet(...)

Arguments

...

Matrices (ncol = 2) of patches coordinates with the first column pxcor and the second column pycor.

Value

Matrix (ncol = 2) with the first column pxcor and the second column pycor representing the patches coordinates.

Details

Duplicate patches among the inputs are removed in the returned matrix.

References

Wilensky, U. 1999. NetLogo. http://ccl.northwestern.edu/netlogo/. Center for Connected Learning and Computer-Based Modeling, Northwestern University. Evanston, IL.

See Also

https://ccl.northwestern.edu/netlogo/docs/dictionary.html#patch-set

Examples

Run this code
# NOT RUN {
w1 <- createWorld(minPxcor = 0, maxPxcor = 9, minPycor = 0, maxPycor = 9)
p1 <- patchAt(world = w1, agents = patch(w1, c(0,1,2), c(0,0,0)), dx = 1, dy = 1)
p2 <- patchDistDir(world = w1, agents = patch(w1, 0, 0), dist = 1, angle = 45)
p3 <- patch(world = w1, x = 4.3, y = 8)
p4 <- patchSet(p1, p2, p3)


# }

Run the code above in your browser using DataLab