bboxSum {sampSurf} | R Documentation |
Takes an array of bbox
matrices and forms the overall
encapsulating bounding box from these.
bboxSum(arr.bbox, ...)
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
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)