Package mikera.gui

Examples of mikera.gui.JConsole.fillArea()


      jc.captureStdOut();
      System.out.println("Captured output");
     
     
      // brown box
      jc.fillArea(' ', Color.WHITE, new Color(100,70,30), 20, 20, 3, 3);
     
      jc.setCursorPos(0, 0);

      Frames.display(jc,"JConsole test application");
     
View Full Code Here


      int iterations=0;
     
      while (start>(System.currentTimeMillis()-1000*SECS)) {
        for (int y=10; y<20; y++) {
          for (int x=10; x<80; x++) {
            jc.fillArea((char)Rand.r(256),
                Colours.getColor(Rand.nextInt()),
                Colours.getColor(Rand.nextInt()),
                x, y, 1, 1);
          }
        }
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.