plot3D {sampSurf} | R Documentation |
This routine uses the “rgl
” package to
display objects of class "Tract
" or subclass,
"InclusionZoneGrid
" or subclass, and
"sampSurf
" objects in a three dimensional
representation of the surface.
This is not the generic function, that is defined in
rasterVis::plot3D
, which should be referred to for
more details on both possible base arguments and functionality. Please
also see the plot3D-methods
for other possible arguments
added for “sampSurf” class functionality.
Nothing returned.
One can generate a hardcopy of a plot using the appropriate commands
in the “rgl
” package.
Jeffrey H. Gove
## Not run: # # create a buffered tract, sampling surface, and then display... # bufftr = bufferedTract(10, Tract(c(x=100,y=100),cellSize=0.5,units='metric')) ss = sampSurf(25,bufftr,iZone='sausageIZ',plotRadius=4) require(rgl) plot3D(ss) ## End(Not run)