Ejemplo n.º 1
0
  public synchronized void outputNewImage(String filename) {
    switch (layoutPolicy) {
      case COMPUTED_IN_LAYOUT_RUNNER:
        layoutPipeIn.pump();
        break;
      case COMPUTED_ONCE_AT_NEW_IMAGE:
        if (layout != null) layout.compute();
        break;
      case COMPUTED_FULLY_AT_NEW_IMAGE:
        stabilizeLayout(layout.getStabilizationLimit());
        break;
      default:
        break;
    }

    if (resolution.getWidth() != image.getWidth() || resolution.getHeight() != image.getHeight())
      initImage();

    if (clearImageBeforeOutput) {
      for (int x = 0; x < resolution.getWidth(); x++)
        for (int y = 0; y < resolution.getHeight(); y++) image.setRGB(x, y, 0x00000000);
    }

    if (gg.getNodeCount() > 0) {
      if (autofit) {
        gg.computeBounds();

        Point3 lo = gg.getMinPos();
        Point3 hi = gg.getMaxPos();

        renderer.getCamera().setBounds(lo.x, lo.y, lo.z, hi.x, hi.y, hi.z);
      }

      renderer.render(g2d, 0, 0, resolution.getWidth(), resolution.getHeight());
    }

    for (PostRenderer action : postRenderers) action.render(g2d);

    image.flush();

    try {
      File out = new File(filename);

      if (out.getParent() != null && !out.getParentFile().exists()) out.getParentFile().mkdirs();

      ImageIO.write(image, outputType.name(), out);

      printProgress();
    } catch (IOException e) {
      // ?
    }
  }
Ejemplo n.º 2
0
 public void setGraphViewport(double minx, double miny, double maxx, double maxy) {
   renderer.getCamera().setGraphViewport(minx, miny, maxx, maxy);
 }
Ejemplo n.º 3
0
 public void setViewPercent(double zoom) {
   renderer.getCamera().setViewPercent(zoom);
 }
Ejemplo n.º 4
0
 public double getViewPercent() {
   return renderer.getCamera().getViewPercent();
 }
Ejemplo n.º 5
0
 public void setViewCenter(double x, double y) {
   renderer.getCamera().setViewCenter(x, y, 0);
 }
Ejemplo n.º 6
0
 public Point3 getViewCenter() {
   return renderer.getCamera().getViewCenter();
 }