Description Usage Arguments Details Value Author(s) See Also Examples
Takes an array of bbox
matrices and forms the overall
encapsulating bounding box from these.
1 |
arr.bbox |
This is a 3 dimensional array of |
... |
Not presently used. |
The details are all presented above.
A valid bbox
matrix for the minimal bounding box of the set.
Jeffrey H. Gove
1 2 3 4 5 6 7 8 9 10 11 12 | dlogs = downLogs(3)
bboxArray = array(dim=c(2,2,3))
bboxArray[,,1] = bbox(perimeter(dlogs@logs$log.1))
bboxArray[,,2] = bbox(perimeter(dlogs@logs$log.2))
bboxArray[,,3] = bbox(perimeter(dlogs@logs$log.3))
dimnames(bboxArray) = dimnames(bbox(dlogs@logs$log.1)) #page dim doesn't matter
bbox = bboxSum(bboxArray)
## Not run:
plot(dlogs, axes=TRUE)
plot(bboxToPoly(bbox), add=TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.