Plot amira surface objects in 3D using rgl
# S3 method for hxsurf
plot3d(x, materials = NULL, col = NULL, ...)
An hxsurf surface object
Character vector or regex
naming materials to
plot (defaults to all materials in x). See subset.hxsurf
.
Character vector specifying colors for the materials, or a
function that will be called with the number of materials to plot. When
NULL
(default) will use meterial colours defined in Amira (if
available), or rainbow
otherwise.
Additional arguments passed to
Other hxsurf:
as.hxsurf()
,
as.mesh3d()
,
materials()
,
read.hxsurf()
,
subset.hxsurf()
,
write.hxsurf()
# NOT RUN {
plot3d(kcs20)
plot3d(MBL.surf)
# }
# NOT RUN {
# plot only vertical lobe
clear3d()
plot3d(MBL.surf, materials="VL", alpha=0.3)
# everything except vertical lobe
clear3d()
plot3d(MBL.surf, alpha=0.3,
materials=grep("VL", MBL.surf$RegionList, value = TRUE, invert = TRUE))
# }
Run the code above in your browser using DataLab