examples/batchPlot3dToPng.R

library(grDevices)

old.readline <- readline;
readline <- function(promt) {
  dev.off();
  png(filename = "examples/batchPlot3d_2.png",
      width = 640, height = 480,
      units = "px", pointsize = 12,
      bg = "white")
}

png(filename = "examples/batchPlot3d_1.png",
    width = 640, height = 480,
    units = "px", pointsize = 12,
    bg = "white")
source("examples/batchPlot3d.R");
dev.off();

readline <- old.readline;
thomasWeise/plotteR documentation built on May 29, 2019, 5:41 a.m.