Displaying 1 result from an estimated 1 matches for "savetrianglesasoff".
2011 May 12
2
Exporting interactive 3D plots with axes and labels
...",zlab="Variable Z")
1. I know thanks to Luke Tierney (www.stat.uiowa.edu/~luke/R/misc3d/misc3d-pdf/misc3d-pdf.pdf) how to export the 3D plot without the axes and labels with:
dummy=function(...){
contour3d(p,x,x,x,level=mean(p),scale = FALSE,...)
}
conts=dummy()
saveTrianglesAsOFF <- function(scene, filename = "scene.OFF") {
scene <- misc3d:::colorScene(scene)
triangles <- misc3d:::canonicalizeAndMergeScene(scene, "color", "color2",
"alpha", "col.mesh",
"fill"...