Package processing.core

Examples of processing.core.PGraphicsJava2D.background()


      int height = Math.min(1200, p.height * 4);
      PGraphicsJava2D canvas = (PGraphicsJava2D) p.createGraphics(width,
          height, PConstants.JAVA2D);
      canvas.beginDraw();
      prettyHints(canvas);
      canvas.background(255);
      r.render(canvas, 0, 0, canvas.width, canvas.height,true);
      canvas.endDraw();
      canvas.loadPixels();
      PImage img = canvas.get();
      canvas.dispose();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.